CPU probe 80%

Hello everybody,

I would like to know how can I do the CPU probe send an alert when the device’s CPU is upper of 80% more than 5 minutos.

Maybe here?:
CPU_Probe.png
Thank you so much in advance,

Marcos.

I mean the Windows server CPU where Dude is running.

Thanx!

Create a probe with the error line like so…

probe;
name: cpu-80
type:function
Available: cpu_usage_available()
error: if (cpu_usage()<80, “”, “cpu error”)
value: cpu_usage()
unit:%

edit, set the probe interval to 1 minute and set the retries to 5 so it will fail in 5 minutes if it is down (note this probe will stay down for 5 minutes when it fires).

It works!!!

I LOVE THE DUDE!!

Thanks lebowski, that helped me out too!