diff options
| author | Paul Buetow (venus) <paul@buetow.org> | 2012-01-21 15:49:33 +0100 |
|---|---|---|
| committer | Paul Buetow (venus) <paul@buetow.org> | 2012-01-21 15:49:33 +0100 |
| commit | 3f620b8cf2dc6e6cb349e493e6efecef309ae033 (patch) | |
| tree | 7a2bb8770b2dfe668f505c51d426fb626ded2469 | |
| parent | b6f4e7d8c2c6f8c3c8a37fde7e96490db073f324 (diff) | |
backup
| -rw-r--r-- | CHANGELOG | 6 | ||||
| -rw-r--r-- | README | 4 | ||||
| -rwxr-xr-x | loadbars | 4 |
3 files changed, 9 insertions, 5 deletions
@@ -1,4 +1,8 @@ -* Bugfix: Max system+user pk is never >100% +* Also show stats for idle, iowait, irq, softirq and steal cpu time +* Some parameters have been renamed (see --help) +* Introduced extended mode (use --extended 1 at startup or 'e' hotkey) +* Modified the bar colors a little bit (see --help) +* Some Bugfixes Tue Dec 27 12:28:40 CET 2011 * Released v0.3.1 @@ -41,8 +41,8 @@ Explanations: Color: Yellow, dark yellow if al>50%, orange if al>50% sy = System cpu sage in % Blue, purple if >30% - al = 100% minus id + to = Total CPU usage, which is (100% - id) pk = Max al peak of last avg. samples (extended) avg = System load average; desc. order: 1, 5 and 15 min. avg. 1px horizontal line: Maximum sy+us+io of last 'avg' samples (extended) -(extended) means: text display only if extended mode is turned on + Extended means: text display only if extended mode is turned on @@ -519,7 +519,7 @@ sub main_loop ($@) { $app->print($x, $y+=$space, sprintf '%02d%s', norm $cpuaverage->{iowait}, 'io'); $app->print($x, $y+=$space, sprintf '%02d%s', norm $cpuaverage->{user}, 'us'); $app->print($x, $y+=$space, sprintf '%02d%s', norm $cpuaverage->{system}, 'sy'); - $app->print($x, $y+=$space, sprintf '%02d%s', norm $all, 'al'); + $app->print($x, $y+=$space, sprintf '%02d%s', norm $all, 'to'); $app->print($x, $y+=$space, sprintf '%02d%s', norm $max_all, 'pk') if $C{extended}; @@ -614,7 +614,7 @@ Explanations: Color: Yellow, dark yellow if al>50%, orange if al>50% sy = System cpu sage in % Blue, purple if >30% - al = 100% minus id + to = Total CPU usage, which is (100% - id) pk = Max al peak of last avg. samples (extended) avg = System load average; desc. order: 1, 5 and 15 min. avg. 1px horizontal line: Maximum sy+us+io of last 'avg' samples (extended) |
