I've set the triger to:
I think it should work like:
If the minimum value for Processor Time is more than 95 for over 10m > Problem
If the max value for Processor Time is less than 50 for over 5m > Recover
In the real world scenario it's flapping every 45-50 sec from Problem to Recover but the CPU level stays at 100 all the time.
What am I doing wrong?
Code:
({TRIGGER.VALUE}=0&{Template_Windows:perf_counter[\Processor(_Total)\% Processor Time].min(10m)}>95)|
({TRIGGER.VALUE}=1&{Template_Windows:perf_counter[\Processor(_Total)\% Processor Time].max(5m)}<50)
If the minimum value for Processor Time is more than 95 for over 10m > Problem
If the max value for Processor Time is less than 50 for over 5m > Recover
In the real world scenario it's flapping every 45-50 sec from Problem to Recover but the CPU level stays at 100 all the time.
What am I doing wrong?
Comment