mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* add tests for v1 of the JSON NTP client stuff * update the NTP stuff to work with legacy and JSON * add the NTP client legacy tests * Update ntp-server.inc.php
72 lines
2.8 KiB
PHP
72 lines
2.8 KiB
PHP
<?php
|
|
|
|
use LibreNMS\Exceptions\JsonAppParsingFailedException;
|
|
use LibreNMS\Exceptions\JsonAppException;
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
$name = 'ntp-server';
|
|
$app_id = $app['app_id'];
|
|
|
|
echo $name;
|
|
|
|
try {
|
|
$ntp=json_app_get($device, $name);
|
|
} catch (JsonAppParsingFailedException $e) {
|
|
// Legacy script, build compatible array
|
|
$legacy = $e->getOutput();
|
|
|
|
$ntp=array(
|
|
data => array(),
|
|
);
|
|
|
|
list ($ntp['data']['stratum'], $ntp['data']['offset'], $ntp['data']['frequency'], $ntp['data']['jitter'],
|
|
$ntp['data']['noise'], $ntp['data']['stability'], $ntp['data']['uptime'], $ntp['data']['buffer_recv'],
|
|
$ntp['data']['buffer_free'], $ntp['data']['buffer_used'], $ntp['data']['packets_drop'],
|
|
$ntp['data']['packets_ignore'], $ntp['data']['packets_recv'], $ntp['data']['packets_sent']) = explode("\n", $legacy);
|
|
} catch (JsonAppException $e) {
|
|
echo PHP_EOL . $name . ':' .$e->getCode().':'. $e->getMessage() . PHP_EOL;
|
|
update_application($app, $e->getCode().':'.$e->getMessage(), []); // Set empty metrics and error message
|
|
return;
|
|
}
|
|
|
|
|
|
$rrd_name = array('app', $name, $app_id);
|
|
$rrd_def = RrdDefinition::make()
|
|
->addDataset('stratum', 'GAUGE', 0, 1000)
|
|
->addDataset('offset', 'GAUGE', -1000, 1000)
|
|
->addDataset('frequency', 'GAUGE', -1000, 1000)
|
|
->addDataset('jitter', 'GAUGE', -1000, 1000)
|
|
->addDataset('noise', 'GAUGE', -1000, 1000)
|
|
->addDataset('stability', 'GAUGE', -1000, 1000)
|
|
->addDataset('uptime', 'GAUGE', 0, 125000000000)
|
|
->addDataset('buffer_recv', 'GAUGE', 0, 100000)
|
|
->addDataset('buffer_free', 'GAUGE', 0, 100000)
|
|
->addDataset('buffer_used', 'GAUGE', 0, 100000)
|
|
->addDataset('packets_drop', 'DERIVE', 0, 125000000000)
|
|
->addDataset('packets_ignore', 'DERIVE', 0, 125000000000)
|
|
->addDataset('packets_recv', 'DERIVE', 0, 125000000000)
|
|
->addDataset('packets_sent', 'DERIVE', 0, 125000000000);
|
|
|
|
|
|
$fields = array(
|
|
'stratum' => $ntp['data']['stratum'],
|
|
'offset' => $ntp['data']['offset'],
|
|
'frequency' => $ntp['data']['frequency'],
|
|
'jitter' => $ntp['data']['sys_jitter'],
|
|
'noise' => $ntp['data']['clk_jitter'],
|
|
'stability' => $ntp['data']['clk_wander'],
|
|
'uptime' => $ntp['data']['time_since_reset'],
|
|
'buffer_recv' => $ntp['data']['receive_buffers'],
|
|
'buffer_free' => $ntp['data']['free_receive_buffers'],
|
|
'buffer_used' => $ntp['data']['used_receive_buffers'],
|
|
'packets_drop' => $ntp['data']['dropped_packets'],
|
|
'packets_ignore' => $ntp['data']['ignored_packets'],
|
|
'packets_recv' => $ntp['data']['received_packets'],
|
|
'packets_sent' => $ntp['data']['packets_sent'],
|
|
);
|
|
|
|
|
|
$tags = compact('name', 'app_id', 'rrd_name', 'rrd_def');
|
|
data_update($device, 'app', $tags, $fields);
|
|
update_application($app, 'OK', $fields);
|