Inactive is a valide status. it is trigged by low temp in room or negative delta temperature between in and outside.
$type = 'shelterStatus';
|
$config['mibs'][$mib]['states'][$type][0] = array('name' => 'Inactive', 'event' => 'exclude');
|
Since outdoor1Tempr is always valid (for my 5), it will always be skipped.
'skip_if_valid_exist' => 'temperature->DANTHERM-COOLING-MIB-outdoor1Tempr'
|
I notice a UI bug with "$config['mibs'][$mib]['ip-address'][] ", if you have no interface mibs, you can't view the IP-address in interface.
since the fan can be off and is a valid state, and we have the warnings in the load, i don't think we need it redundantly. And it will generate false alarms, with the low warnings. or we need to be able to tie the sensors with a status (this can also be useful for other users where the sensor valid/invalid based on status. like POE).
$config['mibs'][$mib]['sensor'][] = [
|
..
|
'min' => -1,
|
//'limit_auto' => FALSE,
|
'oid_limit_low' => 'deadBandRPMf1',
|
//'oid_limit_low_warn' => 'idleRPMf1',
|
..];
|
|
Nicely done with the
'oid_add' => 'fan1OpertdurMin',
|
'scale_add' => 60,
|
Can it also be add to sensors? so we can add warning if outdoor1 is highere than Shelter (scale_add => -1 )?
Inactive is a valide status. it is trigged by low temp in room or negative delta temperature between in and outside.
Since outdoor1Tempr is always valid (for my 5), it will always be skipped.
I notice a UI bug with "$config['mibs'][$mib]['ip-address'][] ", if you have no interface mibs, you can't view the IP-address in interface.
since the fan can be off and is a valid state, and we have the warnings in the load, i don't think we need it redundantly. And it will generate false alarms, with the low warnings. or we need to be able to tie the sensors with a status (this can also be useful for other users where the sensor valid/invalid based on status. like POE).
..
//'oid_limit_low_warn' => 'idleRPMf1',
..];
Nicely done with the
Can it also be add to sensors? so we can add warning if outdoor1 is highere than Shelter (scale_add => -1 )?