2

I want to disable the Zabbix trigger only between 01:00 - 05:00. It should be enabled after 05:00 until 01:00 again.

and time(...) > 050000 and time(...) < 010000

However, it doesn't seem to be working. I know about the Maintenance function on Zabbix, but that is not an option.

What's wrong with above code or does anybody have a better idea?

Pika Supports Ukraine
  • 3,612
  • 10
  • 26
  • 42
user11563595
  • 45
  • 1
  • 9

1 Answers1

2

i've solved the problem with this trigger :

({server:net.tcp.listen[22].last()}=0 and {server:net.tcp.listen[22].time()}>050000) or ({server:net.tcp.listen[22].last()}=0 and {server:net.tcp.listen[22].time()}<010000)

it seems to work for me ;-)

user11563595
  • 45
  • 1
  • 9