Hello,
I have created a trigger on my servers to check how the E partition are on the servers, with the following code:
But I want to exclude a server named: SD-Veeam
How can I exclude a servername in the trigger?
I found out that you can add a servername exclusion in the action page so you won't get an email but you will see the error on the dashboard page of the Zabbix webinterface. And I doesn't even want to see the error of that particular server.
Is that possible to exclude a selected server name?
I tried it with:
But this gave an error while saving.
I have created a trigger on my servers to check how the E partition are on the servers, with the following code:
Code:
{Template Free Hard Disk Space:vfs.fs.size[E:,pfree].last(0)}<10
How can I exclude a servername in the trigger?
I found out that you can add a servername exclusion in the action page so you won't get an email but you will see the error on the dashboard page of the Zabbix webinterface. And I doesn't even want to see the error of that particular server.
Is that possible to exclude a selected server name?
I tried it with:
Code:
{Template Free Hard Disk Space:vfs.fs.size[E:,pfree].last(0)}<10 AND {HOSTNAME} <> "SD-Veeam"
Comment