Hi ismailsarp , do you how to monitor those items over an specifict time lapse? I need a trigger for "vmware.hv.cpu.usage.perf[{$VMWARE.URL},{$VMWARE.HV.UUID}]" , if cpu utilization is over 90% more than 10 minutes. Thanks!
Ad Widget
Collapse
VMware CPU Usage in percentage
Collapse
X
-
-
You can do as below.Hi ismailsarp , do you how to monitor those items over an specifict time lapse? I need a trigger for "vmware.hv.cpu.usage.perf[{$VMWARE.URL},{$VMWARE.HV.UUID}]" , if cpu utilization is over 90% more than 10 minutes. Thanks!
You can change time (5m or 10m)
1) Add a new macros for Vmware Hypervisors template;
Macro:Value: 90 (you can change it as you want)Code:{$CPU.UTIL.CRIT}
2) And add a new trigger for High CPU
Event Name: Operational Data:Code:High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)Expression:Code:Current utilization: {ITEM.LASTVALUE1}Code:min(/VMware Hypervisor/vmware.hv.perfcounter[{$VMWARE.URL},{$VMWARE.HV.UUID},"cpu/utilization[average]"],5m)>{$CPU.UTIL.CRIT}
3) And Create trigger actions for alarm High CPU
And now you can get alarms.
I send alarm email and MicrosoftTeams platform same time
Good luck !Comment
-
Good day zabbix community
I'm trying to get RAM Usage in percentage for Hypervisors.
Using that item key:
vmware.hv.perfcounter[{$VMWARE.URL},{$VMWARE.HV.UUID},"mem/usage[average]"]
However, I'm getting the percentage wrong
VMware: Memory usage in percents36m 2s 4232 %
The value is sort of correct, except it is multiplied by 100.Comment
-
Good day zabbix community
I'm trying to get RAM Usage in percentage for Hypervisors.
Using that item key:
vmware.hv.perfcounter[{$VMWARE.URL},{$VMWARE.HV.UUID},"mem/usage[average]"]
However, I'm getting the percentage wrong
VMware: Memory usage in percents36m 2s 4232 %
The value is sort of correct, except it is multiplied by 100.
Did you add custom multiplier as follows ?
Comment
Comment