2011-09-30 19:15:58 +00:00
|
|
|
<?php
|
|
|
|
|
2011-09-30 19:46:32 +00:00
|
|
|
$i=0;
|
2011-09-30 19:15:58 +00:00
|
|
|
|
2011-09-30 19:46:32 +00:00
|
|
|
include("smokeping_common.inc.php");
|
2011-09-30 19:15:58 +00:00
|
|
|
|
2011-09-30 19:46:32 +00:00
|
|
|
foreach($smokeping_files['out'][$device['hostname']] as $source => $filename)
|
2011-09-30 19:15:58 +00:00
|
|
|
{
|
|
|
|
$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");
|
|
|
|
|
|
|
|
?>
|