Files

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

30 lines
815 B
PHP
Raw Permalink Normal View History

2021-03-18 20:11:25 +01:00
<?php
require 'includes/html/graphs/common.inc.php';
$colours = 'mixed';
$nototal = (($width < 224) ? 1 : 0);
$unit_text = 'Seconds';
$rrd_filename = Rrd::name($device['hostname'], ['app', 'chronyd', $app->app_id]);
2021-03-18 20:11:25 +01:00
$array = [
'system_time' => ['descr' => 'Clock lag'],
'last_offset' => ['descr' => 'Last offset'],
'rms_offset' => ['descr' => 'Avg offset'],
];
$i = 0;
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($rrd_filename)) {
2021-03-18 20:11:25 +01:00
foreach ($array as $ds => $var) {
$rrd_list[$i]['filename'] = $rrd_filename;
$rrd_list[$i]['descr'] = $var['descr'];
$rrd_list[$i]['ds'] = $ds;
$rrd_list[$i]['colour'] = \LibreNMS\Config::get("graph_colours.$colours.$i");
$i++;
}
} else {
echo "file missing: $file";
}
require 'includes/html/graphs/generic_multi_line.inc.php';