2017-02-03 12:39:38 +00:00
< ? php
2022-06-22 16:46:12 +02:00
echo ' EXTREME-SYSTEM-MIB ' ;
2017-02-03 12:39:38 +00:00
// Fan Speed
$oid = '.1.3.6.1.4.1.1916.1.1.1.9.1.4' ;
2022-06-22 16:46:12 +02:00
$oids = snmpwalk_cache_multi_oid ( $device , $oid , [], 'EXTREME-SYSTEM-MIB' );
2017-02-03 12:39:38 +00:00
foreach ( $oids as $index => $entry ) {
// fix index to a proper int
preg_match ( '/^.*\.([^\.]*)$/' , " $index " , $matches );
$index = $matches [ 1 ];
// substract 100 from index to start from 1 instead of 101
$modindex = ( $index - 100 );
$oid = " .1.3.6.1.4.1.1916.1.1.1.9.1.4. $index " ;
2022-06-22 16:46:12 +02:00
$value = snmp_get ( $device , $oid , '-Oqv' , 'EXTREME-SYSTEM-MIB' );
2017-02-03 12:39:38 +00:00
$descr = " Fan Speed $modindex " ;
// round function used to round limit values to hundreds to avoid h/w/l limits being changed on every discovery as a change of 1rpm for fan speed would cause the limit values to change since they're dynamically calculated
2023-03-13 22:32:22 +01:00
$high_limit = round_Nth ( $value * 1.5 , 100 );
$high_warn_limit = round_Nth ( $value * 1.25 , 100 );
$low_warn_limit = round_Nth ( $value * 0.75 , 100 );
$low_limit = round_Nth ( $value * 0.5 , 100 );
2017-02-03 12:39:38 +00:00
if ( is_numeric ( $value )) {
2024-09-03 21:04:34 -05:00
discover_sensor ( null , 'fanspeed' , $device , $oid , $index , 'extreme-fanspeed' , $descr , '1' , '1' , $low_limit , $low_warn_limit , $high_warn_limit , $high_limit , $value );
2017-02-03 12:39:38 +00:00
}
}