librenms/html/includes/graphs/application/ntpclient_freq.inc.php
Tom Laermans c15bfa62a4 syntaxer run + manual cleanup
git-svn-id: http://www.observium.org/svn/observer/trunk@2630 61d68cd4-352d-0410-923a-c4978735b2b8
2011-10-01 10:10:02 +00:00

22 lines
482 B
PHP

<?php
include("includes/graphs/common.inc.php");
$scale_min = 0;
$ds = "frequency";
$colour_area = "F6F6F6";
$colour_line = "B3D0DB";
$colour_area_max = "FFEE99";
$graph_max = 100;
$unit_text = "Frequency";
$ntpclient_rrd = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-ntpclient-".$app['app_id'].".rrd";
if (is_file($ntpclient_rrd))
{
$rrd_filename = $ntpclient_rrd;
}
include("includes/graphs/generic_simplex.inc.php");
?>