mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: Tidy up sensor discovery * more files * removed uneeded files * updated array check * updates for linux/supermicro * small changes * Update linux.inc.php * Add supermicro temps back to linux.inc.php * No need for is_file on rfc1628.inc.php, it exists * Revert rfc1628 change * Fix whitespace... * rebased * fixed $valid data not being passed to new sensors() function
63 lines
1.8 KiB
PHP
63 lines
1.8 KiB
PHP
<?php
|
|
|
|
echo 'MGE ';
|
|
$oids = trim(snmp_walk($device, '.1.3.6.1.4.1.705.1.7.2.1.5', '-OsqnU')); // OID: mgoutputCurrent
|
|
d_echo($oids."\n");
|
|
|
|
$numPhase = count(explode("\n", $oids));
|
|
for ($i = 1; $i <= $numPhase; $i++) {
|
|
unset($current);
|
|
$current_oid = ".1.3.6.1.4.1.705.1.7.2.1.5.$i";
|
|
$descr = 'Output';
|
|
if ($numPhase > 1) {
|
|
$descr .= " Phase $i";
|
|
}
|
|
|
|
$current = snmp_get($device, $current_oid, '-Oqv');
|
|
if (!$current) {
|
|
$current_oid .= '.0';
|
|
$current = snmp_get($device, $current_oid, '-Oqv');
|
|
}
|
|
|
|
$current /= 10;
|
|
$type = 'mge-ups';
|
|
$precision = 10;
|
|
$index = $i;
|
|
$warnlimit = null;
|
|
$lowlimit = 0;
|
|
$limit = null;
|
|
$lowwarnlimit = null;
|
|
|
|
discover_sensor($valid['sensor'], 'current', $device, $current_oid, $index, $type, $descr, '10', '1', $lowlimit, $lowwarnlimit, $warnlimit, $limit, $current);
|
|
}//end for
|
|
|
|
$oids = trim(snmp_walk($device, '.1.3.6.1.4.1.705.1.6.2.1.6', '-OsqnU')); // OID: mginputCurrent
|
|
d_echo($oids."\n");
|
|
|
|
$numPhase = count(explode("\n", $oids));
|
|
for ($i = 1; $i <= $numPhase; $i++) {
|
|
unset($current);
|
|
$current_oid = ".1.3.6.1.4.1.705.1.6.2.1.6.$i";
|
|
$descr = 'Input';
|
|
if ($numPhase > 1) {
|
|
$descr .= " Phase $i";
|
|
}
|
|
|
|
$current = snmp_get($device, $current_oid, '-Oqv');
|
|
if (!$current) {
|
|
$current_oid .= '.0';
|
|
$current = snmp_get($device, $current_oid, '-Oqv');
|
|
}
|
|
|
|
$current /= 10;
|
|
$type = 'mge-ups';
|
|
$precision = 10;
|
|
$index = (100 + $i);
|
|
$warnlimit = null;
|
|
$lowlimit = 0;
|
|
$limit = null;
|
|
$lowwarnlimit = null;
|
|
|
|
discover_sensor($valid['sensor'], 'current', $device, $current_oid, $index, $type, $descr, '10', '1', $lowlimit, $lowwarnlimit, $warnlimit, $limit, $current);
|
|
}//end for
|