qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Wei Huang <wei@redhat.com>, Avi Kivity <avi@cloudius-systems.com>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	areis@redhat.com
Subject: [Qemu-devel] [PATCH 1/2] kvm_stat: add column headers to text UI
Date: Mon,  2 Mar 2015 17:29:06 -0600	[thread overview]
Message-ID: <1425338947-10296-2-git-send-email-stefanha@redhat.com> (raw)
In-Reply-To: <1425338947-10296-1-git-send-email-stefanha@redhat.com>

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>
---
 scripts/kvm/kvm_stat | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/scripts/kvm/kvm_stat b/scripts/kvm/kvm_stat
index c65cabd..7e5d256 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]:
-- 
2.1.0

  reply	other threads:[~2015-03-02 23:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-02 23:29 [Qemu-devel] [PATCH 0/2] kvm_stat: add man page and tui column headers Stefan Hajnoczi
2015-03-02 23:29 ` Stefan Hajnoczi [this message]
2015-03-02 23:29 ` [Qemu-devel] [PATCH 2/2] kvm_stat: add kvm_stat.1 man page Stefan Hajnoczi
2015-03-03 17:19 ` [Qemu-devel] [PATCH 0/2] kvm_stat: add man page and tui column headers Ademar Reis
2015-03-03 18:00 ` Wei Huang
2015-03-09 14:47 ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1425338947-10296-2-git-send-email-stefanha@redhat.com \
    --to=stefanha@redhat.com \
    --cc=areis@redhat.com \
    --cc=avi@cloudius-systems.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wei@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).