Files
librenms-librenms/includes/discovery/sensors/current/raritan-pdu.inc.php

103 lines
4.7 KiB
PHP
Raw Normal View History

<?php
$divisor = '1000';
$outlet_divisor = $divisor;
$multiplier = '1';
// Check Inlets
$inlet_oids = snmp_walk($device, 'inletLabel', '-Osqn', 'PDU2-MIB');
$inlet_oids = trim($inlet_oids);
if ($inlet_oids) {
echo 'PDU Inlet ';
}
foreach (explode("\n", $inlet_oids) as $inlet_data) {
$inlet_data = trim($inlet_data);
if ($inlet_data) {
list($inlet_oid,$inlet_descr) = explode(' ', $inlet_data, 2);
$inlet_split_oid = explode('.', $inlet_oid);
$inlet_index = $inlet_split_oid[(count($inlet_split_oid) - 2)].'.'.$inlet_split_oid[(count($inlet_split_oid) - 1)];
2015-05-17 16:42:09 +02:00
$inlet_oid = ".1.3.6.1.4.1.13742.6.5.2.3.1.4.$inlet_index.1";
$inlet_divisor = pow(10, snmp_get($device, "inletSensorDecimalDigits.$inlet_index.rmsCurrent", '-Ovq', 'PDU2-MIB'));
$inlet_current = (snmp_get($device, "measurementsInletSensorValue.$inlet_index.1", '-Ovq', 'PDU2-MIB') / $inlet_divisor);
2015-05-17 16:42:09 +02:00
if ($inlet_current >= 0) {
discover_sensor($valid['sensor'], 'current', $device, $inlet_oid, $inlet_index, 'raritan', $inlet_descr, $inlet_divisor, $multiplier, null, null, null, null, $inlet_current);
2015-07-13 20:10:26 +02:00
}
2015-05-17 16:42:09 +02:00
}
}
2015-05-17 16:42:09 +02:00
// Check for per-outlet polling
$outlet_oids = snmp_walk($device, 'outletIndex', '-Osqn', 'PDU-MIB');
$outlet_oids = trim($outlet_oids);
if ($outlet_oids) {
echo 'PDU Outlet ';
}
foreach (explode("\n", $outlet_oids) as $outlet_data) {
$outlet_data = trim($outlet_data);
if ($outlet_data) {
list($outlet_oid,$outlet_descr) = explode(' ', $outlet_data, 2);
$outlet_split_oid = explode('.', $outlet_oid);
$outlet_index = $outlet_split_oid[(count($outlet_split_oid) - 1)];
$outletsuffix = "$outlet_index";
$outlet_insert_index = $outlet_index;
// outletLoadValue: "A non-negative value indicates the measured load in milli Amps"
$outlet_oid = ".1.3.6.1.4.1.13742.4.1.2.2.1.4.$outletsuffix";
$outlet_descr = snmp_get($device, "outletLabel.$outletsuffix", '-Ovq', 'PDU-MIB');
$outlet_low_warn_limit = null;
$outlet_low_limit = null;
$outlet_high_warn_limit = (snmp_get($device, "outletCurrentUpperWarning.$outletsuffix", '-Ovq', 'PDU-MIB') / $outlet_divisor);
$outlet_high_limit = (snmp_get($device, "outletCurrentUpperCritical.$outletsuffix", '-Ovq', 'PDU-MIB') / $outlet_divisor);
$outlet_current = (snmp_get($device, "outletCurrent.$outletsuffix", '-Ovq', 'PDU-MIB') / $outlet_divisor);
if ($outlet_current >= 0) {
discover_sensor($valid['sensor'], 'current', $device, $outlet_oid, $outlet_insert_index, 'raritan', $outlet_descr, $outlet_divisor, $multiplier, $outlet_low_limit, $outlet_low_warn_limit, $outlet_high_warn_limit, $outlet_high_limit, $outlet_current);
2015-07-13 20:10:26 +02:00
}
}
}
/**
* raritan.inc.php
*
* LibreNMS current sensor discovery module for Raritan
*
* 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 <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2017 Neil Lathwood
* @author Neil Lathwood <gh+n@laf.io>
*/
foreach ($pre_cache['raritan_inletTable'] as $index => $raritan_data) {
for ($x=1; $x<=$raritan_data['inletPoleCount']; $x++) {
$tmp_index = "$index.$x";
$new_index = "inletPoleCurrent.$tmp_index";
$oid = '.1.3.6.1.4.1.13742.4.1.21.2.1.3.'. $tmp_index;
$descr = 'Inlet ' . $pre_cache['raritan_inletPoleTable'][$index][$x]['inletPoleLabel'];
$divisor = 1000;
$low_limit = $raritan_data['inletCurrentUpperCritical'] / $divisor;
$low_warn_limit = $raritan_data['inletCurrentUpperWarning'] / $divisor;
$warn_limit = $raritan_data['inletCurrentLowerWarning'] / $divisor;
$high_limit = $raritan_data['inletCurrentLowerCritical'] / $divisor;
$current = $pre_cache['raritan_inletPoleTable'][$index][$x]['inletPoleCurrent'] / $divisor;
discover_sensor($valid["sensor"], "current", $device, $oid, $tmp_index, 'raritan', $descr, $divisor, 1, $low_limit, $low_limit, $warn_limit, $high_limit, $current);
}
}