diff options
author | Pim van den Berg | 2012-08-10 18:56:30 +0200 |
---|---|---|
committer | Pim van den Berg | 2012-08-10 19:00:16 +0200 |
commit | fd04134830d3111c137b47c7ba25a049ab597715 (patch) | |
tree | c2390f06640f2127ab3e987cd3bdaf1d639b3dc2 /plugin/swap.php | |
parent | type: add scale support to default/generic stacked types (diff) | |
download | apt-panopticon_cgp-fd04134830d3111c137b47c7ba25a049ab597715.zip apt-panopticon_cgp-fd04134830d3111c137b47c7ba25a049ab597715.tar.gz apt-panopticon_cgp-fd04134830d3111c137b47c7ba25a049ab597715.tar.bz2 apt-panopticon_cgp-fd04134830d3111c137b47c7ba25a049ab597715.tar.xz |
introduce config option datasize to show graphs in bits or bytes
Config setting $CONFIG['datasize'] can be set to bits or bytes to show graph
data in bits or bytes.
Inspired-by: Neptune Ning (Plan) <frostyplanet@gmail.com>
Diffstat (limited to 'plugin/swap.php')
-rw-r--r-- | plugin/swap.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/swap.php b/plugin/swap.php index c24d90b..dee5692 100644 --- a/plugin/swap.php +++ b/plugin/swap.php | |||
@@ -27,7 +27,8 @@ switch(GET('t')) { | |||
27 | 'used' => 'ff0000', | 27 | 'used' => 'ff0000', |
28 | ); | 28 | ); |
29 | $obj->rrd_title = 'Swap utilization'; | 29 | $obj->rrd_title = 'Swap utilization'; |
30 | $obj->rrd_vertical = 'Bytes'; | 30 | $obj->rrd_vertical = ucfirst($CONFIG['datasize']); |
31 | $obj->scale = $CONFIG['datasize'] == 'bits' ? 8 : 1; | ||
31 | break; | 32 | break; |
32 | case 'swap_io': | 33 | case 'swap_io': |
33 | require_once 'type/GenericIO.class.php'; | 34 | require_once 'type/GenericIO.class.php'; |