update rrd config for new sensors
[php-utility-classes.git] / testbed / rrd / rrd-test.php
... / ...
CommitLineData
1<?php
2$myfile = $_SERVER['SCRIPT_FILENAME'];
3while (is_link($myfile)) { $myfile = readlink($myfile); }
4if (getcwd() != dirname($myfile)) {
5 // change to directory of the script if called from different directory
6 $orig_workingdir = getcwd();
7 chdir(dirname($myfile));
8}
9
10include_once('rrdstat.php-class');
11include_once('rrd-config.inc.php');
12
13if (php_sapi_name() == 'cli') {
14 // automated updates
15 $rrd = new rrdstat($rrd_info, 'video.temp');
16 $rrd->update();
17}
18else {
19 print('this is a commandline app.');
20}
21?>