mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Updated discovery sensors module directory structure
This commit is contained in:
35
includes/discovery/sensors/current/gamatronicups.inc.php
Normal file
35
includes/discovery/sensors/current/gamatronicups.inc.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
if ($device['os'] == 'gamatronicups') {
|
||||
for ($i = 1; $i <= 3; $i++) {
|
||||
$current_oid = "GAMATRONIC-MIB::gamatronicLTD.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 = "GAMATRONIC-MIB::gamatronicLTD.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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user