Files

18 lines
519 B
PHP
Raw Permalink Normal View History

<?php
require 'includes/graphs/common.inc.php';
$ds = 'frequency';
2017-03-08 16:05:38 -06:00
$colour_area = $config['graph_colours']['pinks'][0].'33';
$colour_line = $config['graph_colours']['pinks'][0];
$colour_area_max = 'FFEE99';
2011-10-01 10:10:02 +00:00
$graph_max = 100;
$unit_text = 'Frequency';
2016-09-10 15:37:00 +03:00
$ntpclient_rrd = rrd_name($device['hostname'], array('app', 'ntp-client', $app['app_id']));
if (rrdtool_check_rrd_exists($ntpclient_rrd)) {
$rrd_filename = $ntpclient_rrd;
2011-10-01 10:10:02 +00:00
}
require 'includes/graphs/generic_simplex.inc.php';