我让 monit 监视某个进程,如果该进程运行时间过长,就会终止该进程。但是,我不希望该进程自动重新启动。我没有指定start program
,但每个周期,monit 都会记录无法重新启动该进程。有没有办法告诉 monit 不要尝试重新启动该进程和/或将其从日志中抑制?
check process libreoffice matching soffice.bin
if uptime > 2 then exec "/usr/bin/killall --older-than 2m soffice.bin"