'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( '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'] = 'png'; # 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'] = 800; $CONFIG['detail-height'] = 350; # 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';