mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
b3a19908ab
git-svn-id: http://www.observium.org/svn/observer/trunk@2622 61d68cd4-352d-0410-923a-c4978735b2b8
22 lines
392 B
PHP
22 lines
392 B
PHP
<?php
|
|
|
|
include("smokeping_common.inc.php");
|
|
|
|
$i=0;
|
|
foreach($smokeping_files['in'][$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");
|
|
|
|
?>
|