Files
librenms-librenms/includes/html/graphs/application/chronyd_source_sampling.inc.php
Serphentas c88ef64169 Chrony support (#12488)
* initial chrony implementation

* remove unused import

* add testing data

* fix test data

* fix tests

Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>
2021-03-18 20:11:25 +01:00

31 lines
998 B
PHP

<?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'], $vars['source']]);
$array = [
'adjusted_offset' => ['descr' => 'Adjusted'],
'measured_offset' => ['descr' => 'Measured'],
'offset' => ['descr' => 'Estimated'],
'estimated_error' => ['descr' => 'Est. error'],
'stddev' => ['descr' => 'Std dev'],
];
$rrd_list = [];
if (rrdtool_check_rrd_exists($rrd_filename)) {
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 {
d_echo('RRD "' . $rrd_filename . '" not found');
}
require 'includes/html/graphs/generic_multi_line.inc.php';