I have several rails applications deployed by nginx passenger. I want those applications to be monitored by using monit. How can I monitor those applications using monit? Should I monitor nginx as well?
|
|
This is how I solved this. First, I added to application.rb:
and then I implemented the PidfileManager:
And then you just tell monit to monitor each instance using /var/tmp/rack.X.pid as a pidfile. |
|||||
|
|
If you're looking to keep them running and have them restart if there's an error, you may be better looking at supervisord. Rather than polling to see whether a process is running, supervisord actually runs the process itself. The daemons it runs need to run the the foreground for it to work, but its very effective and will bring services up much quicker than monit would (monit usually polls every minute, whereas supervisord would see the process end and restart it instantly). We use supervisord in production running all our daemons (nginx, beanstalkd, memcached, various python services, etc), and then use monit to monitor supervisord as an added back-up. |
|||
|