Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
435 B
PHP
Raw Permalink Normal View History

<?php
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2011-10-01 10:10:02 +00:00
$scale_min = 0;
$ds = 'stratum';
$colour_area = 'FFCECE';
$colour_line = '880000';
$colour_area_max = 'FFCCCC';
2011-10-01 10:10:02 +00:00
$graph_max = 0;
$unit_text = 'Stratum';
$ntpdserver_rrd = Rrd::name($device['hostname'], ['app', 'ntp-server', $app->app_id]);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($ntpdserver_rrd)) {
$rrd_filename = $ntpdserver_rrd;
2011-10-01 10:10:02 +00:00
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';