search for: show_livestat

Displaying 2 results from an estimated 2 matches for "show_livestat".

Did you mean: show_livestats
2006 Apr 02
3
RPC interface for xenmon
Hi, I read about RPC interface for xenmon in this presentation: www.xensource.com/files/xs0106_xenmon_brief.pdf Has such interface been implemented yet by anyone? Thanks, -- Jayesh ------------------------------------------------------------------------ Everything you can imagine is real _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2006 Mar 06
0
[patch] xenmon.py: add next/previous bindings to curses mode
...indings to XenMon curses mode. Signed-off-by: Diwaker Gupta <dgupta@cs.ucsd.edu> diff -r 7dd31dbf16e7 -r 146b5c76086c tools/xenmon/xenmon.py --- a/tools/xenmon/xenmon.py Mon Mar 6 13:02:50 2006 -0800 +++ b/tools/xenmon/xenmon.py Mon Mar 6 13:17:38 2006 -0800 @@ -452,6 +452,12 @@ def show_livestats(): if c == ord(''c''): cpu = (cpu + 1) % ncpu + # n/p = cycle to the next/previous CPU + if c == ord(''n''): + cpu = (cpu + 1) % ncpu + if c == ord(''p''): + cpu = (cpu - 1) % ncpu +...