summaryrefslogtreecommitdiffstats
path: root/tools/kvm
diff options
context:
space:
mode:
authorStefan Raspl <raspl@linux.vnet.ibm.com>2017-06-07 21:08:37 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2017-06-08 18:17:37 +0200
commit38e89c37a1e05e6e16af582b980534abda29a4d9 (patch)
treeef7c3fef0f50f834a3e6cb9cf807d12e30e05e25 /tools/kvm
parentf6d753102a2469ae4ce08ef3e34d170ec583fb50 (diff)
downloadop-kernel-dev-38e89c37a1e05e6e16af582b980534abda29a4d9.zip
op-kernel-dev-38e89c37a1e05e6e16af582b980534abda29a4d9.tar.gz
tools/kvm_stat: rename 'Current' column to 'CurAvg/s'
'Current' can be misleading as it doesn't tell whether this is the amount of events in the last interval or the current average per second. Note that this necessitates widening the respective column by one more character. Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/kvm')
-rwxr-xr-xtools/kvm/kvm_stat/kvm_stat6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/kvm/kvm_stat/kvm_stat b/tools/kvm/kvm_stat/kvm_stat
index 35147e4..a9e7ea6 100755
--- a/tools/kvm/kvm_stat/kvm_stat
+++ b/tools/kvm/kvm_stat/kvm_stat
@@ -981,8 +981,8 @@ class Tui(object):
if len(regex) > MAX_REGEX_LEN:
regex = regex[:MAX_REGEX_LEN] + '...'
self.screen.addstr(1, 17, 'regex filter: {0}'.format(regex))
- self.screen.addstr(2, 1, '%-40s %10s%7s %7s' %
- ('Event', 'Total', '%Total', 'Current'),
+ self.screen.addstr(2, 1, '%-40s %10s%7s %8s' %
+ ('Event', 'Total', '%Total', 'CurAvg/s'),
curses.A_STANDOUT)
self.screen.addstr(4, 1, 'Collecting data...')
self.screen.refresh()
@@ -1010,7 +1010,7 @@ class Tui(object):
break
if values[0] is not None:
cur = int(round(values[1] / sleeptime)) if values[1] else ''
- self.screen.addstr(row, 1, '%-40s %10d%7.1f %7s' %
+ self.screen.addstr(row, 1, '%-40s %10d%7.1f %8s' %
(key, values[0], values[0] * 100 / total,
cur))
row += 1
OpenPOWER on IntegriCloud