mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
13 lines
438 B
PHP
13 lines
438 B
PHP
<?php
|
|
|
|
$temps = snmp_walk($device, '.1.3.6.1.4.1.45.1.6.3.7.1.1.5.5', '-Osqn');
|
|
|
|
foreach (explode("\n", $temps) as $i => $t) {
|
|
$t = explode(' ', $t);
|
|
$oid = $t[0];
|
|
$val = $t[1];
|
|
// Sensors are reported as 2 * value
|
|
$val = (trim($val) / 2);
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, zeropad($i + 1), 'avaya-ers', 'Unit ' . ($i + 1) . ' temperature', '2', '1', null, null, null, null, $val);
|
|
}
|