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:
Tom Laermans
2010-06-24 16:17:22 +00:00
parent e2781e986c
commit 87dfad8a79
6 changed files with 10390 additions and 0 deletions

View File

@@ -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); }