mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* initial chrony implementation * remove unused import * add testing data * fix test data * fix tests Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>
30 lines
980 B
PHP
30 lines
980 B
PHP
<?php
|
|
|
|
require 'includes/html/graphs/common.inc.php';
|
|
|
|
$colours = 'mixed';
|
|
$nototal = (($width < 224) ? 1 : 0);
|
|
$rrd_filename = rrd_name($device['hostname'], ['app', 'chronyd', $app['app_id'], $vars['source']]);
|
|
$array = [
|
|
'polling_rate' => ['descr' => 'Polling rate'],
|
|
'last_rx' => ['descr' => 'Last RX'],
|
|
'number_samplepoints' => ['descr' => '# sample pts'],
|
|
'number_runs' => ['descr' => '# runs'],
|
|
'span' => ['descr' => 'Sample span'],
|
|
];
|
|
|
|
$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';
|