aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf/config.php
blob: 16a2d3404586ec0a43b360c104e538f6a50ce1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

$CONFIG['datadir'] = '/var/lib/collectd/rrd';

#$CONFIG['cat']['nethuis'] = array('pepper');
$CONFIG['overview'] = array('load', 'cpu', 'memory', 'swap');

$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';

?>