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