Are there any examples on the web of how to monitor delayed_job with Monit?
Everything I can find uses God, but I refuse to use God since long running processes in Ruby generally suck. (The most current post in the God mailing list? God Memory Usage Grows Steadily.)
Update: delayed_job now comes with a sample monit config based on this question.
Here is how I got this working.
script/delayed_job
daemon you can use with monit. Railscasts has a good episode about this version of delayed_job
(ASCIICasts version). This script also has some other nice features, like the ability to run multiple workers. I don't cover that here../configure --sysconfdir=/etc/monit
so the standard Ubuntu configuration dir was picked up.Write a monit script. Here's what I came up with:
check process delayed_job with pidfile /var/www/app/shared/pids/delayed_job.pid
start program = "/var/www/app/current/script/delayed_job -e production start"
stop program = "/var/www/app/current/script/delayed_job -e production stop"
I store this in my soucre control system and point monit at it with include /var/www/app/current/config/monit
in the /etc/monit/monitrc
file.
monit start delayed_job
and monit stop delayed_job
is what you want to run. I also reload monit when deploying to pick up any config file changes.Problems I ran into:
daemons
gem must be installed for script/delayed_job
to run. script/delayed_job
with -e production
(for example). This is documented in the README file but not in the script's help output./usr/bin/ruby
and /usr/bin/gem
to the REE versions.When debugging monit, I found it helps to stop the init.d version and run it from the th command line, so you can get error messages. Otherwise it is very difficult to figure out why things are going wrong.
sudo /etc/init.d/monit stop
sudo monit start delayed_job
Hopefully this helps the next person who wants to monitor delayed_job
with monit.