mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fb90b1813f
* added new sensors to mes23xx * ci * copy/paste error * ci * cleanup + testdata * yaml * yamlnew * added [no_bulk] for PoE discovery * fully qualified OID name
64 lines
2.5 KiB
PHP
64 lines
2.5 KiB
PHP
<?php
|
|
/*
|
|
* LibreNMS discovery module for Eltex-mes23xx SFP current
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* @package LibreNMS
|
|
* @link https://www.librenms.org
|
|
*
|
|
* @copyright 2022 Peca Nesovanovic
|
|
*
|
|
* @author Peca Nesovanovic <peca.nesovanovic@sattrakt.com>
|
|
*/
|
|
$divisor = 1000000;
|
|
$multiplier = 1;
|
|
if ($pre_cache['eltex-mes23xx-sfp']) {
|
|
foreach ($pre_cache['eltex-mes23xx-sfp'] as $ifIndex => $data) {
|
|
if (isset($data['rlPhyTestTableTxBias']['rlPhyTestGetResult'])) {
|
|
$value = $data['rlPhyTestTableTxBias']['rlPhyTestGetResult'] / $divisor;
|
|
if ($value) {
|
|
$high_limit = $data['txBias']['eltPhdTransceiverThresholdHighAlarm'] / $divisor;
|
|
$high_warn_limit = $data['txBias']['eltPhdTransceiverThresholdHighWarning'] / $divisor;
|
|
$low_warn_limit = $data['txBias']['eltPhdTransceiverThresholdLowWarning'] / $divisor;
|
|
$low_limit = $data['txBias']['eltPhdTransceiverThresholdLowAlarm'] / $divisor;
|
|
$tmp = get_port_by_index_cache($device['device_id'], $ifIndex);
|
|
$descr = $tmp['ifName'];
|
|
$oid = '.1.3.6.1.4.1.89.90.1.2.1.3.' . $ifIndex . '.7';
|
|
discover_sensor(
|
|
$valid['sensor'],
|
|
'current',
|
|
$device,
|
|
$oid,
|
|
'SfpTxBias' . $ifIndex,
|
|
'rlPhyTestTableTxBias',
|
|
'SfpTxBias-' . $descr,
|
|
$divisor,
|
|
$multiplier,
|
|
$low_limit,
|
|
$low_warn_limit,
|
|
$high_warn_limit,
|
|
$high_limit,
|
|
$value,
|
|
'snmp',
|
|
null,
|
|
null,
|
|
null,
|
|
'Transceiver'
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|