I have the following trigger expression defined to monitor Microsoft SQL via ODBC on Zabbix 5.4.2
How can I adjust this trigger to wait 30 seconds before firing?
Would this work?
Code:
last(/servername.domain.com/net.tcp.service[tcp,{HOST.CONN},{$MSSQL.PORT}])=0
Would this work?
Code:
last(/servername.domain.com/net.tcp.service[tcp,{HOST.CONN},{$MSSQL.PORT}],30s)=0
Comment