Hi,
I've been struggling with creating a custom trigger for when disk space exceeds growing 10G over 10 minutes.
I'm currently running Zabbix 6.0.35.
When looking online, the syntax used is often very different of what my version currently supports.
For example. This shouldn't be very difficult to achieve. I found the following code online and that should technically just work:
Code:
{hostname:vfs.fs.size[D:,used].last()} - {hostname:vfs.fs.size[D:,used].prev(10m)} > 10G
Instead I tried using something like this:
Code:
last(/hostname/vfs.fs.size[D:,used]) - max(/hostname/vfs.fs.size[D:,used],10m) > 10737418240
I have no idea how to get this working properly. Tried a lot of different things, half of which my Zabbix version does not seem to support.
Any ideas on how to approach this?
Thanks in advance and very kind regards.
Comment