72fdf93d29
Should catch when the build manager freezes and restart it
17 lines
666 B
Text
17 lines
666 B
Text
set daemon 10 with start delay 30
|
|
|
|
set httpd port 2812 and
|
|
use address localhost # only accept connection from localhost
|
|
allow localhost # allow localhost to connect to the server and
|
|
allow admin:monit # require user 'admin' with password 'monit'
|
|
|
|
check host buildmanager with address localhost
|
|
start program = "/usr/bin/sv start /etc/service/buildmanager" with timeout 10 seconds
|
|
stop program = "/usr/bin/sv kill /etc/service/buildmanager"
|
|
if failed port 8787 protocol http
|
|
request "/"
|
|
status = 405
|
|
with timeout 3 seconds
|
|
for 3 cycles
|
|
then restart
|
|
if 10 restarts within 10 cycles then timeout
|