mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Gamatronic UPS support (patch by jduggan)
git-svn-id: http://www.observium.org/svn/observer/trunk@1258 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
BIN
html/images/os/gamatronicups.png
Normal file
BIN
html/images/os/gamatronicups.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
@@ -165,6 +165,44 @@ if ($device['os'] == "netmanplus")
|
||||
}
|
||||
|
||||
|
||||
|
||||
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;
|
||||
|
||||
echo discover_current($valid_current,$device, $current_oid, $index, $type, $descr, $precision, $lowlimit, $warnlimit, $limit, $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;
|
||||
|
||||
echo discover_current($valid_current,$device, $current_oid, $index, $type, $descr, $precision, $lowlimit, $warnlimit, $limit, $current);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
## Delete removed sensors
|
||||
|
||||
if($debug) { print_r($valid_current); }
|
||||
|
||||
@@ -213,6 +213,40 @@ if ($device['os'] == "netmanplus")
|
||||
}
|
||||
|
||||
|
||||
if ($device['os'] == "gamatronicups") {
|
||||
|
||||
for($i = 1; $i <= 3 ;$i++) {
|
||||
$volt_oid = "GAMATRONIC-MIB::gamatronicLTD.5.4.1.1.2.$i";
|
||||
$descr = "Input Phase $i";
|
||||
$volt = snmp_get($device, $volt_oid, "-Oqv");
|
||||
$type = "gamatronicups";
|
||||
$precision = 1;
|
||||
$index = $i;
|
||||
$lowlimit = 0;
|
||||
$warnlimit = NULL;
|
||||
$limit = NULL;
|
||||
|
||||
echo discover_volt($valid_volt,$device, $volt_oid, $index, $type, $descr, $precision, $lowlimit, $warnlimit, $limit, $volt);
|
||||
|
||||
}
|
||||
|
||||
for($i = 1; $i <= 3 ;$i++) {
|
||||
$volt_oid = "GAMATRONIC-MIB::gamatronicLTD.5.5.1.1.2.$i";
|
||||
$descr = "Output Phase $i";
|
||||
$volt = snmp_get($device, $volt_oid, "-Oqv");
|
||||
$type = "gamatronicups";
|
||||
$precision = 1;
|
||||
$index = 100+$i;
|
||||
$lowlimit = 0;
|
||||
$warnlimit = NULL;
|
||||
$limit = NULL;
|
||||
|
||||
echo discover_volt($valid_volt,$device, $volt_oid, $index, $type, $descr, $precision, $lowlimit, $warnlimit, $limit, $volt);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
## Delete removed sensors
|
||||
|
||||
if($debug) { print_r($valid_volt); }
|
||||
|
||||
12
includes/osdiscovery/discover-gamatronicups.php
Normal file
12
includes/osdiscovery/discover-gamatronicups.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
if(!$os) {
|
||||
|
||||
if ($sysDescr == "") {
|
||||
if (snmp_get($device, "GAMATRONIC-MIB::psUnitManufacture.0", "-Oqv", "") == "Gamatronic") {
|
||||
$os = "gamatronicups";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
1913
mibs/GMACI.mib
Normal file
1913
mibs/GMACI.mib
Normal file
File diff suppressed because it is too large
Load Diff
8393
mibs/GamaMib.mib
Normal file
8393
mibs/GamaMib.mib
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user