Hi there,
I was wondering if someone would be able to help me, I've been looking at trigger dependencies but it mainly seems to be used for not reviving multiple emails, so you won't get notifications your mail server is down if there is a router or firewall it depends on which is offline.
What I'm trying to do is notifications for web checks with various conditions, so what I currently have is this:
Logical expression: Host X | Host X & Host Y | Host Z
So what I need is to only receive notifications about Host X's response code or response time if Host Y or Host Z is down. The reason for this, the server I'm trying to do this on is a backup monitoring solution, Host Z is the main zabbix server and Host Y is the mail server the main zabbix server uses.
Has anyone else done something like this?
I was wondering if someone would be able to help me, I've been looking at trigger dependencies but it mainly seems to be used for not reviving multiple emails, so you won't get notifications your mail server is down if there is a router or firewall it depends on which is offline.
What I'm trying to do is notifications for web checks with various conditions, so what I currently have is this:
Code:
{X:web.test.rspcode[www.x.co.uk,Homepage].last(0)}#200 | {X:web.test.time[www.x.co.uk,Homepage,resp].avg(120)}>15 & {Y:web.test.rspcode[www.y.co.uk,Homepage].last(0)}#200 | {Z:web.test.rspcode[www.z.co.uk,Homepage].last(0)}#200
So what I need is to only receive notifications about Host X's response code or response time if Host Y or Host Z is down. The reason for this, the server I'm trying to do this on is a backup monitoring solution, Host Z is the main zabbix server and Host Y is the mail server the main zabbix server uses.
Has anyone else done something like this?