summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorStefan Hajnoczi2015-03-03 00:29:06 +0100
committerPaolo Bonzini2015-03-10 10:49:25 +0100
commit9a7dcb711bdaf4082bf333dbecfeb729bbff1f8e (patch)
treeef37f9f4a5108ce95b56fedf888c42b922dafffc /scripts
parentiscsi: Fix check for username (diff)
downloadqemu-9a7dcb711bdaf4082bf333dbecfeb729bbff1f8e.tar.gz
qemu-9a7dcb711bdaf4082bf333dbecfeb729bbff1f8e.tar.xz
qemu-9a7dcb711bdaf4082bf333dbecfeb729bbff1f8e.zip
kvm_stat: add column headers to text UI
The curses user interface shows both the accumulated total and the current event counts. Add column headers so it's clear what the numbers mean. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Ademar Reis <areis@redhat.com> Reviewed-by: Wei Huang <wei@redhat.com> Message-Id: <1425338947-10296-2-git-send-email-stefanha@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kvm/kvm_stat5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/kvm/kvm_stat b/scripts/kvm/kvm_stat
index c65cabda5a..7e5d25612b 100755
--- a/scripts/kvm/kvm_stat
+++ b/scripts/kvm/kvm_stat
@@ -519,7 +519,10 @@ def tui(screen, stats):
def refresh(sleeptime):
screen.erase()
screen.addstr(0, 0, 'kvm statistics')
- row = 2
+ screen.addstr(2, 1, 'Event')
+ screen.addstr(2, 1 + label_width + number_width - len('Total'), 'Total')
+ screen.addstr(2, 1 + label_width + number_width + 8 - len('Current'), 'Current')
+ row = 3
s = stats.get()
def sortkey(x):
if s[x][1]: