2016-09-19 22:30:06 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
* LibreNMS
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
|
|
|
* the source code distribution for details.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ($device['os'] == 'riverbed') {
|
|
|
|
|
d_echo('Riverbed');
|
2016-10-11 17:34:09 +01:00
|
|
|
$oid = '.1.3.6.1.4.1.17163.1.1.2.9.0';
|
2016-10-20 00:57:33 +03:00
|
|
|
$index = 0;
|
2016-09-19 22:30:06 +02:00
|
|
|
$descr = 'System Temperature';
|
2016-10-20 00:57:33 +03:00
|
|
|
$temperature = snmp_get($device, $oid, '-Oqv');
|
|
|
|
|
if (is_numeric($temperature)) {
|
|
|
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, 'riverbed', $descr, '1', '1', 0, null, null, 65, $temperature);
|
2016-09-19 22:30:06 +02:00
|
|
|
}
|
|
|
|
|
}
|