mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@1590 61d68cd4-352d-0410-923a-c4978735b2b8
61 lines
2.1 KiB
PHP
61 lines
2.1 KiB
PHP
<?php
|
|
|
|
global $valid_sensor;
|
|
|
|
## XUPS-MIB
|
|
if ($device['os'] == "powerware")
|
|
{
|
|
echo("XUPS-MIB ");
|
|
|
|
$oids = snmp_walk($device, "xupsBatCurrent", "-Osqn", "XUPS-MIB");
|
|
if ($debug) { echo($oids."\n"); }
|
|
$oids = trim($oids);
|
|
foreach(explode("\n", $oids) as $data)
|
|
{
|
|
$data = trim($data);
|
|
if ($data)
|
|
{
|
|
list($oid,$descr) = explode(" ", $data,2);
|
|
$split_oid = explode('.',$oid);
|
|
$current_id = $split_oid[count($split_oid)-1];
|
|
$current_oid = "1.3.6.1.4.1.534.1.2.3.$current_id";
|
|
$divisor = 1;
|
|
$current = snmp_get($device, $current_oid, "-O vq");
|
|
$descr = "Battery" . (count(explode("\n",$oids)) == 1 ? '' : ' ' . ($current_id+1));
|
|
$type = "xups";
|
|
$index = "1.2.3.".$current_id;
|
|
echo discover_sensor($valid_sensor, 'current', $device, $current_oid, $index, $type, $descr, $divisor, '1', NULL, NULL, NULL, NULL, $current);
|
|
}
|
|
}
|
|
|
|
$oids = trim(snmp_walk($device, "xupsOutputCurrent", "-OsqnU"));
|
|
if ($debug) { echo($oids."\n"); }
|
|
list($unused,$numPhase) = explode(' ',$oids);
|
|
for($i = 1; $i <= $numPhase;$i++)
|
|
{
|
|
$current_oid = "1.3.6.1.4.1.534.1.4.4.1.3.$i";
|
|
$descr = "Output"; if ($numPhase > 1) $descr .= " Phase $i";
|
|
$current = snmp_get($device, $current_oid, "-Oqv");
|
|
$type = "xups";
|
|
$divisor = 1;
|
|
$index = "4.4.1.3.".$i;
|
|
echo discover_sensor($valid_sensor, 'current', $device, $current_oid, $index, $type, $descr, $divisor, '1', NULL, NULL, NULL, NULL, $current);
|
|
}
|
|
|
|
$oids = trim(snmp_walk($device, "xupsInputCurrent", "-OsqnU"));
|
|
if ($debug) { echo($oids."\n"); }
|
|
list($unused,$numPhase) = explode(' ',$oids);
|
|
for($i = 1; $i <= $numPhase;$i++)
|
|
{
|
|
$current_oid = "1.3.6.1.4.1.534.1.3.4.1.3.$i";
|
|
$descr = "Input"; if ($numPhase > 1) $descr .= " Phase $i";
|
|
$current = snmp_get($device, $current_oid, "-Oqv");
|
|
$type = "xups";
|
|
$divisor = 1;
|
|
$index = "3.4.1.3.".$i;
|
|
echo discover_sensor($valid_sensor, 'current', $device, $current_oid, $index, $type, $descr, $divisor, '1', NULL, NULL, NULL, NULL, $current);
|
|
}
|
|
}
|
|
|
|
?>
|