Neil Lathwood d4e8c54516 refactor: Tidy up sensor discovery (#5550)
* 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
2017-02-03 06:39:38 -06:00

30 lines
979 B
PHP

<?php
for ($i = 1; $i <= 3; $i++) {
$current_oid = ".1.3.6.1.4.1.6050.5.4.1.1.3.$i";
$descr = "Input Phase $i";
$current = snmp_get($device, $current_oid, '-Oqv');
$type = 'gamatronicups';
$precision = 1;
$index = $i;
$lowlimit = 0;
$warnlimit = null;
$limit = null;
discover_sensor($valid['sensor'], 'current', $device, $current_oid, $index, $type, $descr, '1', '1', $lowlimit, null, null, null, $current);
}
for ($i = 1; $i <= 3; $i++) {
$current_oid = ".1.3.6.1.4.1.6050.5.5.1.1.3.$i";
$descr = "Output Phase $i";
$current = snmp_get($device, $current_oid, '-Oqv');
$type = 'gamatronicups';
$precision = 1;
$index = (100 + $i);
$lowlimit = 0;
$warnlimit = null;
$limit = null;
discover_sensor($valid['sensor'], 'current', $device, $current_oid, $index, $type, $descr, '1', '1', $lowlimit, null, null, null, $current);
}