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@2622 61d68cd4-352d-0410-923a-c4978735b2b8
23 lines
394 B
PHP
23 lines
394 B
PHP
<?php
|
|
|
|
$i=0;
|
|
|
|
include("smokeping_common.inc.php");
|
|
|
|
foreach($smokeping_files['out'][$device['hostname']] as $source => $filename)
|
|
{
|
|
$i++;
|
|
$rrd_list[$i]['filename'] = $config['smokeping']['dir'] . $filename;
|
|
$rrd_list[$i]['descr'] = $source;
|
|
$rrd_list[$i]['ds'] = "median";
|
|
}
|
|
|
|
$colours='mixed';
|
|
|
|
$nototal = 1;
|
|
$simple_rrd = 1;
|
|
|
|
include("includes/graphs/generic_multi_line.inc.php");
|
|
|
|
?>
|