[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Monit does not wait for stop program before calling start program
From: |
Lutz Mader |
Subject: |
Re: Monit does not wait for stop program before calling start program |
Date: |
Mon, 15 May 2017 22:03:18 +0200 |
User-agent: |
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 |
Hello Shankar,
the number of cycles is to low.
> if 5 restarts within 5 cycles then unmonitor
The rule match, if the process restart every cycle only. I use something
like
if not exist for 5 cycles then start
if 3 restarts within 50 cycles then unmonitor
to stop useless recovery (with unmonitor) and increase the "start" time
after services terminated.
A suggestion only,
Lutz