Hi, I'm new to zabbix and trying to figure out how the triggers work on the CPU load. After activating the default windows template i'm getting alot of CPU.load emails. I know my systems are well used and i want to finetune the trigger to be less agressive and report me if the CPU load has been over 90% for the past 15 minutes.
the default trigger is: {Template_Windows:system.cpu.load[,avg1].last(0)}>5
now it seems i have a few thing i can play with but I need some help in understanding this.
1) the first parameter is: avg1, i can see there is also an avg5 and avg15. Am i correct in interprating this as:
- avg1 => the average of all values for the last 1 min
- avg5 => the average of all values for the last 5 min
- avg15 => the average of all values for the last 15 min
2) last(0) i'm guessting is the last value?
3) >5 => means the value is higher than 5%
Can i thus create a trigger as follows that would trigger if the average load is higher than 90% for the past 15 min:
{Template_Windows:system.cpu.load[,avg15].last(0)}>90
or would it need to be something like this
{Template_Windows:system.cpu.load[,avg1].avg(900)}>90
many thanks,
Tom
the default trigger is: {Template_Windows:system.cpu.load[,avg1].last(0)}>5
now it seems i have a few thing i can play with but I need some help in understanding this.
1) the first parameter is: avg1, i can see there is also an avg5 and avg15. Am i correct in interprating this as:
- avg1 => the average of all values for the last 1 min
- avg5 => the average of all values for the last 5 min
- avg15 => the average of all values for the last 15 min
2) last(0) i'm guessting is the last value?
3) >5 => means the value is higher than 5%
Can i thus create a trigger as follows that would trigger if the average load is higher than 90% for the past 15 min:
{Template_Windows:system.cpu.load[,avg15].last(0)}>90
or would it need to be something like this
{Template_Windows:system.cpu.load[,avg1].avg(900)}>90
many thanks,
Tom
Comment