2011-09-30 00:19:48 +00:00
|
|
|
<?php
|
|
|
|
|
2011-10-01 10:10:02 +00:00
|
|
|
include("includes/graphs/common.inc.php");
|
2011-09-30 00:19:48 +00:00
|
|
|
|
2011-10-01 10:10:02 +00:00
|
|
|
$scale_min = 0;
|
|
|
|
$nototal = (($width<224) ? 1 : 0);
|
|
|
|
$unit_text = "Packets";
|
|
|
|
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-ntpdserver-".$app['app_id'].".rrd";
|
|
|
|
$array = array(
|
|
|
|
'packets_drop' => array('descr' => 'Dropped', 'colour' => '880000FF'),
|
|
|
|
'packets_ignore' => array('descr' => 'Ignored', 'colour' => 'FF8800FF')
|
|
|
|
);
|
2011-09-30 00:19:48 +00:00
|
|
|
|
2011-10-01 10:10:02 +00:00
|
|
|
$i = 0;
|
2011-09-30 00:19:48 +00:00
|
|
|
|
2011-10-01 10:10:02 +00:00
|
|
|
if (is_file($rrd_filename))
|
|
|
|
{
|
|
|
|
foreach ($array as $ds => $vars)
|
|
|
|
{
|
|
|
|
$rrd_list[$i]['filename'] = $rrd_filename;
|
|
|
|
$rrd_list[$i]['descr'] = $vars['descr'];
|
|
|
|
$rrd_list[$i]['ds'] = $ds;
|
|
|
|
$rrd_list[$i]['colour'] = $vars['colour'];
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo("file missing: $file");
|
|
|
|
}
|
2011-09-30 00:19:48 +00:00
|
|
|
|
|
|
|
// include("includes/graphs/generic_multi_line.inc.php");
|
2012-04-05 16:47:39 +00:00
|
|
|
|
2011-10-01 10:10:02 +00:00
|
|
|
include("includes/graphs/generic_multi_simplex_seperated.inc.php");
|
2011-09-30 00:19:48 +00:00
|
|
|
|
|
|
|
?>
|