From 9da21f22923b770ecb77dc52b1be6b5abf9be0a3 Mon Sep 17 00:00:00 2001 From: Keith Whyte Date: Tue, 14 Jun 2022 19:06:03 +0200 Subject: [PATCH] Add missing file referenced in c13bf85aa4 --- modules/rhizo_base/files/CGPconfig.php | 110 +++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 modules/rhizo_base/files/CGPconfig.php diff --git a/modules/rhizo_base/files/CGPconfig.php b/modules/rhizo_base/files/CGPconfig.php new file mode 100644 index 0000000..eb9024f --- /dev/null +++ b/modules/rhizo_base/files/CGPconfig.php @@ -0,0 +1,110 @@ + 'eth0', 't' => 'if_octets'); + +# default plugins time range +$CONFIG['time_range']['default'] = 86400; +$CONFIG['time_range']['uptime'] = 31536000; + +# show load averages and used memory on overview page +$CONFIG['showload'] = true; +$CONFIG['showmem'] = false; +$CONFIG['showtime'] = false; + +$CONFIG['term'] = array( + '1hour' => 3600, + '2hour' => 3600 * 2, + '8hour' => 3600 * 8, + 'day' => 86400, + 'week' => 86400 * 7, + 'month' => 86400 * 31, + 'quarter'=> 86400 * 31 * 3, + 'year' => 86400 * 365, +); + +# show graphs in bits or bytes +$CONFIG['network_datasize'] = 'bytes'; + +# "png", "svg", "canvas" or "hybrid" (canvas on detail page, png on the others) graphs +$CONFIG['graph_type'] = 'hybrid'; + +# For canvas graphs, use 'async' or 'sync' fetch method +$CONFIG['rrd_fetch_method'] = 'sync'; + +# use the negative X-axis in I/O graphs +$CONFIG['negative_io'] = false; + +# add XXth percentile line + legend to network graphs +# false = disabled; 95 = 95th percentile +$CONFIG['percentile'] = false; + +# create smooth graphs (rrdtool -E) +$CONFIG['graph_smooth'] = false; + +# draw min/max spikes in a lighter color in graphs with type default +$CONFIG['graph_minmax'] = false; + +# The URL that provides RRD files for the "canvas" graph type. Examples: +# 'rrd/{file}' is replaced by 'rrd/example.com/load/load.rrd' +# 'rrd.php?path={file_escaped}' becomes 'rrd.php?path=host%3Fload%3Fload.rrd' +$CONFIG['rrd_url'] = 'rrd.php?path={file_escaped}'; + +# browser cache time for the graphs (in seconds) +$CONFIG['cache'] = 90; + +# page refresh (in seconds) +$CONFIG['page_refresh'] = ''; + +# default width/height of the graphs +$CONFIG['width'] = 400; +$CONFIG['height'] = 175; +# default width/height of detailed graphs +$CONFIG['detail-width'] = 1000; +$CONFIG['detail-height'] = 450; +# max width/height of a graph (to prevent from OOM) +$CONFIG['max-width'] = $CONFIG['detail-width'] * 2; +$CONFIG['max-height'] = $CONFIG['detail-height'] * 2; + +# collectd's unix socket (unixsock plugin) +# enabled: 'unix:///var/run/collectd-unixsock' +# enabled (rrdcached): 'unix:///var/run/rrdcached.sock' +# disabled: NULL +$CONFIG['socket'] = NULL; + +# flush rrd data to disk using "collectd" (unixsock plugin) +# or a "rrdcached" server +$CONFIG['flush_type'] = 'collectd'; + +# system default timezone when not set +$CONFIG['default_timezone'] = 'UTC'; + + +# load local configuration +if (file_exists(dirname(__FILE__).'/config.local.php')) + include_once 'config.local.php';