mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
5c97185974
git-svn-id: http://www.observium.org/svn/observer/trunk@1325 61d68cd4-352d-0410-923a-c4978735b2b8
21 lines
513 B
PHP
21 lines
513 B
PHP
<?php
|
|
|
|
global $valid_temp;
|
|
|
|
if ($device['os'] == "papouch-tme")
|
|
{
|
|
echo("Papouch TME ");
|
|
|
|
$descr = snmp_get($device, "SNMPv2-SMI::enterprises.18248.1.1.3.0", "-Oqv");
|
|
$temp = snmp_get($device, "SNMPv2-SMI::enterprises.18248.1.1.1.0", "-Oqv") / 10;
|
|
|
|
if ($descr != "" && $temp != "0")
|
|
{
|
|
$temp_oid = ".1.3.6.1.4.1.18248.1.1.1.0";
|
|
$descr = trim(str_replace("\"", "", $descr));
|
|
discover_temperature($valid_temp, $device, $temp_oid, "1", "ironware", $descr, "10", NULL, NULL, $temp);
|
|
}
|
|
}
|
|
|
|
?>
|