我有一个监控程序如下
check program test_pgm with path "/bin/bash /var/run/test.sh"
every 2 cycles
if status !=0 for 2 cycles then alert
假设我的monit守护进程设置为每60秒运行一次,这意味着每个循环为1分钟。我希望每2分钟运行一次我的程序,如果连续两次失败则发出警告
我上面的内容是否正确?或者我应该说
if status !=0 for 4 cycles then alert
或应该是
if status !=0 for 2 times within 2 cycles then alert