blob: cbddfb3e46e5779c7b68b2c9bee78cd7c0ad9e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
$CONFIG['datadir'] = '/var/lib/collectd/rrd';
#$CONFIG['cat']['nethuis'] = array('pepper');
$CONFIG['overview'] = array('load', 'cpu', 'memory', 'swap');
# default width/height of the graphs
$CONFIG['width'] = 400;
$CONFIG['heigth'] = 175;
# default width/height of detailed graphs
$CONFIG['detail-width'] = 800;
$CONFIG['detail-heigth'] = 350;
$CONFIG['groupby'] = array(
'cpu' => 'type',
'irq' => 'type',
'memory' => 'type',
'processes' => 'type',
'swap' => 'type',
'sensors' => 'type',
);
if (file_exists(dirname(__FILE__).'/config.local.php'))
include 'config.local.php';
?>
|