aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf
diff options
context:
space:
mode:
authorPim van den Berg2014-06-24 12:38:10 +0200
committerPim van den Berg2014-06-24 12:44:37 +0200
commitd21f4a765b82e4c02ff15bf730b0e1f0d68d5471 (patch)
tree567b1cb3fdbfb8b5ea33704ee8c665f4494647af /conf
parentplugin/tcpconns: fix missing port number in rrd title (diff)
downloadapt-panopticon_cgp-d21f4a765b82e4c02ff15bf730b0e1f0d68d5471.zip
apt-panopticon_cgp-d21f4a765b82e4c02ff15bf730b0e1f0d68d5471.tar.gz
apt-panopticon_cgp-d21f4a765b82e4c02ff15bf730b0e1f0d68d5471.tar.bz2
apt-panopticon_cgp-d21f4a765b82e4c02ff15bf730b0e1f0d68d5471.tar.xz
add percentile support to network traffic graphs
Set $CONFIG['percentile'] to a number and a XXth percentile line + legend will be added to all network traffic (if_octets) graphs. Closes #81
Diffstat (limited to 'conf')
-rw-r--r--conf/config.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/config.php b/conf/config.php
index b086455..3d54e26 100644
--- a/conf/config.php
+++ b/conf/config.php
@@ -55,6 +55,10 @@ $CONFIG['rrd_fetch_method'] = 'sync';
55# use the negative X-axis in I/O graphs 55# use the negative X-axis in I/O graphs
56$CONFIG['negative_io'] = false; 56$CONFIG['negative_io'] = false;
57 57
58# add XXth percentile line + legend to network graphs
59# false = disabled; 95 = 95th percentile
60$CONFIG['percentile'] = false;
61
58# create smooth graphs (rrdtool -E) 62# create smooth graphs (rrdtool -E)
59$CONFIG['graph_smooth'] = false; 63$CONFIG['graph_smooth'] = false;
60 64