How to configure CPU trigger for usage 90 % for generic PC ???
Ad Widget
Collapse
How to configure CPU trigger for usage 90 %
Collapse
X
-
Hi
There's a difference between cpu.load and cpu.util. In your case, the trigger should be something like that:
{Template Windows:system.cpu.util[,,].last(0)}>90
But this triggers is not very smart... You should use:
{Template Windows:system.cpu.util[,,].avg(#3)}>90
In this case you avoid lots of events / actions. Only if the 3 last average values were higher than 90% will turn the trigger on.Last edited by m_gularte; 04-11-2013, 23:31.
Comment