mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@1291 61d68cd4-352d-0410-923a-c4978735b2b8
48 lines
921 B
PHP
48 lines
921 B
PHP
<?php
|
|
|
|
function rrdtool_update($rrdfile, $rrdupdate)
|
|
{
|
|
return rrdtool("update", $rrdfile, $rrdupdate);
|
|
}
|
|
|
|
function rrdtool_create($rrdfile, $rrdupdate)
|
|
{
|
|
return rrdtool("create", $rrdfile, $rrdupdate);
|
|
}
|
|
|
|
function rrdtool_fetch($rrdfile, $rrdupdate)
|
|
{
|
|
return rrdtool("fetch", $rrdfile, $rrdupdate);
|
|
}
|
|
|
|
function rrdtool_graph($rrdfile, $rrdupdate)
|
|
{
|
|
return rrdtool("graph", $rrdfile, $rrdupdate);
|
|
}
|
|
|
|
function rrdtool_last($rrdfile, $rrdupdate)
|
|
{
|
|
return rrdtool("last", $rrdfile, $rrdupdate);
|
|
}
|
|
|
|
function rrdtool_lastupdate($rrdfile, $rrdupdate)
|
|
{
|
|
return rrdtool("lastupdate", $rrdfile, $rrdupdate);
|
|
}
|
|
|
|
function rrdtool($command, $file, $options)
|
|
{
|
|
global $config; global $debug;
|
|
|
|
$command = $config['rrdtool'] . " $command $file $options";
|
|
if($config['rrdcached'])
|
|
{
|
|
$command .= " --daemon " . $config['rrdcached'];
|
|
}
|
|
|
|
if ($debug) { echo($command."\n"); }
|
|
return shell_exec($command);
|
|
}
|
|
|
|
?>
|