There was a Beautiful write up on how to report on Custom poller data in post
and now I would like to get some advanced alerts going on that same data.
I am pulling current temp and critical temp from servers with 2 separate custom pollers and would like to have alerts that fire when the current temp gets with in 50 (which equals 5 degrees) of the Critical temp.
the status pulled from the MIB is always in tenths of a degree
example would be a server giving a current temp of 420 and the Critical Temp is 470.
when i write the trigger it goes like this
Condition group apply when all conditions are met
poller_name = current_temp
numeric_status >= 420
condition group apply when all conditions are met
poller_name = Critical_temp
numeric_status = 470
I think it is not working due to the fact that the records from the custom poller are stored as separate records and so it never associates the critical temp with the current temp based on the nodeID.
the above does not work but each condition group will work separately
If you have any ideas on this please let me know