Hello all,
for Windows Disk space monitoring I use a slightly modified Trigger from the default "Windows by Zabbix Agent" template (without the "timeleft" expression). So the expression looks like this:
What I try to accomplish is that the Trigger is executed after the Expression is True for 15 counts or minutes (the Item is executed once per minute therefore no difference). So only if the Disk Usage is above the limit for 15 minutes straight I want to know it. If it is below the limit once during the 15 minutes, no Trigger should be executed. I don´t really know how to accomplish that especially with the "(total-used)<MIN.WARN" section...
Does anyone have an idea how to solve that?
Thank you!
Best regards,
Bjoern
for Windows Disk space monitoring I use a slightly modified Trigger from the default "Windows by Zabbix Agent" template (without the "timeleft" expression). So the expression looks like this:
Code:
last(/Windows by Zabbix agent/vfs.fs.dependent.size[{#FSNAME},pused])>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} or ((last(/Windows by Zabbix agent/vfs.fs.dependent.size[{#FSNAME},total])-last(/Windows by Zabbix agent/vfs.fs.dependent.size[{#FSNAME},used]))<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"})
Does anyone have an idea how to solve that?
Thank you!
Best regards,
Bjoern
Comment