I'm using Zabbix 2.0.4.
I know that $1 through $9 can be used in trigger names to reference *constants* in the trigger expression, as described in the 2.0 manual.
That's very useful, but what I'm wondering is if I there is a way to use macros to match *parameters* to the item key.
For example, if the trigger expression is
I know that "$1" evaluates to 98.0, however I'm looking for something like
This would end up evaluating to
host.example.com /var full
Is there anything like that? I'm not seeing it and it seems like it would be very handy.
Thanks,
Tim
I know that $1 through $9 can be used in trigger names to reference *constants* in the trigger expression, as described in the 2.0 manual.
That's very useful, but what I'm wondering is if I there is a way to use macros to match *parameters* to the item key.
For example, if the trigger expression is
Code:
{host.example.com:vfs.fs.size[/var,pused].last(0)}>98.0
Code:
{HOST.NAME} {KEY1.PARAM1} full
host.example.com /var full
Is there anything like that? I'm not seeing it and it seems like it would be very handy.
Thanks,
Tim
Comment