aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/filecount.php
diff options
context:
space:
mode:
authorPim van den Berg2012-08-10 18:56:30 +0200
committerPim van den Berg2012-08-10 19:00:16 +0200
commitfd04134830d3111c137b47c7ba25a049ab597715 (patch)
treec2390f06640f2127ab3e987cd3bdaf1d639b3dc2 /plugin/filecount.php
parenttype: add scale support to default/generic stacked types (diff)
downloadapt-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 '')
-rw-r--r--plugin/filecount.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/filecount.php b/plugin/filecount.php
index 2c318a9..68545e7 100644
--- a/plugin/filecount.php
+++ b/plugin/filecount.php
@@ -23,7 +23,8 @@ switch($obj->args['type']) {
23 $obj->ds_names = array('value' => 'Size'); 23 $obj->ds_names = array('value' => 'Size');
24 $obj->colors = array('value' => '0000ff'); 24 $obj->colors = array('value' => '0000ff');
25 $obj->rrd_title = sprintf('Filecount: size (%s)', $obj->args['pinstance']); 25 $obj->rrd_title = sprintf('Filecount: size (%s)', $obj->args['pinstance']);
26 $obj->rrd_vertical = 'Bytes'; 26 $obj->rrd_vertical = ucfirst($CONFIG['datasize']);
27 $obj->scale = $CONFIG['datasize'] == 'bits' ? 8 : 1;
27 break; 28 break;
28 case 'files': 29 case 'files':
29 $obj->ds_names = array('value' => 'Files'); 30 $obj->ds_names = array('value' => 'Files');