aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/graph.php
diff options
context:
space:
mode:
authorPoil2014-05-18 12:28:34 +0200
committerPoil2014-05-18 12:28:34 +0200
commit01039a24a6cc88a828f20647ae6dda5ee15a0e09 (patch)
tree05f85852be65701a0fe154b02fe68716e00f166d /graph.php
parentplugin/libvirt: show (v)CPU time in milliseconds (diff)
downloadapt-panopticon_cgp-01039a24a6cc88a828f20647ae6dda5ee15a0e09.zip
apt-panopticon_cgp-01039a24a6cc88a828f20647ae6dda5ee15a0e09.tar.gz
apt-panopticon_cgp-01039a24a6cc88a828f20647ae6dda5ee15a0e09.tar.bz2
apt-panopticon_cgp-01039a24a6cc88a828f20647ae6dda5ee15a0e09.tar.xz
Add base option (1GB=1024Mo)
Diffstat (limited to 'graph.php')
-rw-r--r--graph.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/graph.php b/graph.php
index be46653..fbc93a7 100644
--- a/graph.php
+++ b/graph.php
@@ -92,6 +92,9 @@ if (isset($plugin_json[$type]['datasize']) and $plugin_json[$type]['datasize'])
92if (isset($plugin_json[$type]['scale'])) 92if (isset($plugin_json[$type]['scale']))
93 $obj->scale = $plugin_json[$type]['scale']; 93 $obj->scale = $plugin_json[$type]['scale'];
94 94
95if (isset($plugin_json[$type]['base']))
96 $obj->base = $plugin_json[$type]['base'];
97
95if (isset($plugin_json[$type]['legend_format'])) 98if (isset($plugin_json[$type]['legend_format']))
96 $obj->rrd_format = $plugin_json[$type]['legend_format']; 99 $obj->rrd_format = $plugin_json[$type]['legend_format'];
97 100