diff options
author | Vincent Brillault | 2013-12-16 22:28:33 +0100 |
---|---|---|
committer | Pim van den Berg | 2014-01-12 14:35:02 +0100 |
commit | 775da40f8c247a97a01c3affd75511b4cbdb95b7 (patch) | |
tree | 1bf6a5fcaff9b6fec8268c6161a2fbf4fb7e79cb /conf/config.php | |
parent | jsrrdgraph: CGP.js: split draw(id) into prepare_draw(id) and draw(id) (diff) | |
download | apt-panopticon_cgp-775da40f8c247a97a01c3affd75511b4cbdb95b7.zip apt-panopticon_cgp-775da40f8c247a97a01c3affd75511b4cbdb95b7.tar.gz apt-panopticon_cgp-775da40f8c247a97a01c3affd75511b4cbdb95b7.tar.bz2 apt-panopticon_cgp-775da40f8c247a97a01c3affd75511b4cbdb95b7.tar.xz |
Add a configuration option for sync/async choice for the canvas graphs
Diffstat (limited to 'conf/config.php')
-rw-r--r-- | conf/config.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/config.php b/conf/config.php index 26172b1..b808a70 100644 --- a/conf/config.php +++ b/conf/config.php | |||
@@ -45,6 +45,9 @@ $CONFIG['network_datasize'] = 'bytes'; | |||
45 | # png or canvas graphs | 45 | # png or canvas graphs |
46 | $CONFIG['graph_type'] = 'png'; | 46 | $CONFIG['graph_type'] = 'png'; |
47 | 47 | ||
48 | # For canvas graphs, use 'async' or 'sync' fetch method | ||
49 | $CONFIG['rrd_fetch_method'] = 'sync'; | ||
50 | |||
48 | # use the negative X-axis in I/O graphs | 51 | # use the negative X-axis in I/O graphs |
49 | $CONFIG['negative_io'] = false; | 52 | $CONFIG['negative_io'] = false; |
50 | 53 | ||