librenms/html/includes/graphs/application/powerdns_recursing.inc.php
2011-09-28 23:24:28 +00:00

32 lines
835 B
PHP

<?php
include("includes/graphs/common.inc.php");
$scale_min = 0;
$colours = "mixed";
$nototal = 0;
$unit_text = "Packets/sec";
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-powerdns-".$app['app_id'].".rrd";
$array = array(
'rec_questions' => array('descr' => 'Questions', 'colour' => '6699CCFF'),
'rec_answers' => array('descr' => 'Answers', 'colour' => '336699FF'),
);
$i = 0;
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");
}
include("includes/graphs/generic_multi_line.inc.php");
?>