mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-13 16:06:29 +02:00
66c9047207
git-svn-id: http://www.observium.org/svn/observer/trunk@1346 61d68cd4-352d-0410-923a-c4978735b2b8
22 lines
479 B
PHP
22 lines
479 B
PHP
<?php
|
|
|
|
global $valid_temp;
|
|
|
|
if ($device['os'] == "apc")
|
|
{
|
|
$oids = snmp_get($device, "1.3.6.1.4.1.318.1.1.1.2.2.2.0", "-OsqnU", "");
|
|
if ($debug) { echo($oids."\n"); }
|
|
if ($oids)
|
|
{
|
|
echo("APC UPS Internal ");
|
|
list($oid,$current) = explode(' ',$oids);
|
|
$precision = 1;
|
|
$type = "apc";
|
|
$index = 0;
|
|
$descr = "Internal Temperature";
|
|
discover_temperature($valid_temp, $device, $oid, $index, $type, $descr, $precision, NULL, NULL, $current);
|
|
}
|
|
}
|
|
|
|
?>
|