2016-08-12 17:21:55 +10:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* LibreNMS module to capture NTP statistics
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Aaron Daniels <aaron@daniels.id.au>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
|
|
* the source code distribution for details.
|
|
|
|
*
|
|
|
|
* This module will display NTP details from various device types.
|
|
|
|
* To display, modules must create rrd's named: ntp-%PEER%.rrd with the following DS':
|
2019-06-23 00:29:12 -05:00
|
|
|
* DS:stratum:GAUGE:'.\LibreNMS\Config::get('rrd.heartbeat').':0:U
|
|
|
|
* DS:offset:GAUGE:'.\LibreNMS\Config::get('rrd.heartbeat').':0:U
|
|
|
|
* DS:delay:GAUGE:'.\LibreNMS\Config::get('rrd.heartbeat').':0:U
|
|
|
|
* DS:dispersion:GAUGE:'.\LibreNMS\Config::get('rrd.heartbeat').':0:U
|
2016-08-12 17:21:55 +10:00
|
|
|
*/
|
|
|
|
|
2018-04-24 21:20:21 -05:00
|
|
|
use LibreNMS\Config;
|
|
|
|
|
2018-04-25 02:08:06 +01:00
|
|
|
if (file_exists(Config::get('install_dir') . "/includes/polling/ntp/{$device['os_group']}.inc.php")) {
|
|
|
|
include Config::get('install_dir') . "/includes/polling/ntp/{$device['os_group']}.inc.php";
|
2016-08-12 17:21:55 +10:00
|
|
|
}
|
2017-02-08 04:54:30 +00:00
|
|
|
|
2018-05-09 13:37:06 +12:00
|
|
|
if ($device['os'] == 'awplus') {
|
|
|
|
include 'includes/polling/ntp/awplus.inc.php';
|
|
|
|
}
|
|
|
|
|
2017-02-08 04:54:30 +00:00
|
|
|
unset(
|
2018-05-09 13:37:06 +12:00
|
|
|
$cntpPeersVarEntry,
|
|
|
|
$atNtpAssociationEntry
|
2017-02-08 04:54:30 +00:00
|
|
|
);
|