mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
revert to old rrd creation method for the time being (don't lose any speed here anyways)
git-svn-id: http://www.observium.org/svn/observer/trunk@2633 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@ -178,7 +178,14 @@ function rrdtool($command, $filename, $options)
|
||||
|
||||
function rrdtool_create($filename, $options)
|
||||
{
|
||||
return rrdtool("create", $filename, $options);
|
||||
|
||||
global $config; global $debug;
|
||||
$command = $config['rrdtool'] . " create $filename $options";
|
||||
if ($debug) { echo($command."\n"); }
|
||||
|
||||
return shell_exec($command);
|
||||
|
||||
# return rrdtool("create", $filename, $options);
|
||||
}
|
||||
|
||||
function rrdtool_update($filename, $options)
|
||||
|
Reference in New Issue
Block a user