blob: 0720e331088f37b655331b4d59b3f96065327013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* path to the .rrd files.
* {item} will be replaced with humidity/temperature,
* {id} with the sensor number
*/
$filetemplate = '/var/lib/munin/home.cweiske.de/haus-usb_wde1_{item}-sensor{id}-g.rrd';
$outdir = '/tmp/';
/**
* Array of sensor number to sensor title associations
*/
$names = array(
0 => 'Schlafzimmer',
1 => 'Wohnzimmer',
2 => 'Buero',
3 => 'Aussen',
4 => 'Bad',
5 => 'Kinderzimmer',
6 => 'Kueche',
);
?>
|