mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
28 lines
836 B
PHP
28 lines
836 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage discovery
|
|
* @copyright (C) 2006-2014 Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
echo(" EXTREME-BASE-MIB ");
|
|
|
|
// Power Usage
|
|
$descr = "Power Usage";
|
|
$oid = "1.3.6.1.4.1.1916.1.1.1.40.1.0"; // extremeSystemPowerUsage
|
|
$value = snmp_get($device, $oid, '-Oqv', 'EXTREME-BASE-MIB');
|
|
$divisor = "1000";
|
|
$value = ($value / $divisor); // Nasty hack to divide the first value by 1000 since the divisor only works for polling after the sensor has been added
|
|
|
|
if (is_numeric($value) && $value > 0) {
|
|
discover_sensor($valid['sensor'], 'power', $device, $oid, '1', 'extreme-power', $descr, $divisor, 1, null, null, null, null, $value); // No limits have been specified since all equipment is different and will use different amount of Watts
|
|
}
|
|
|
|
// EOF
|