Last active
November 6, 2017 14:58
-
-
Save belinskidima/bf0766f09109797bfdb0ebab0be00f67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Unicorn ### | |
check process unicorn | |
with pidfile "/home/deploy/goodpolitics/shared/tmp/pids/unicorn.pid" | |
start program = "/bin/su - deploy -c 'cd /home/deploy/goodpolitics/current && ( export RAILS_ENV='production'; /usr/local/rvm/bin/rvm default do bundle exec unicorn -c /home/deploy/goodpolitics/current/config/unicorn/production.rb -E deployment -D )" | |
stop program = "/bin/su - deploy -c 'cd /home/deploy/goodpolitics/current && /usr/bin/env kill -s QUIT`cat /home/deploy/goodpolitics/current/tmp/pids/unicorn.pid`'" | |
if memory usage > 90% for 3 cycles then restart | |
if cpu > 90% for 2 cycles then restart | |
if 5 restarts within 5 cycles then timeout | |
### Nginx ### | |
check process nginx | |
with pidfile "/run/nginx.pid" | |
start program = "/etc/init.d/nginx start" | |
stop program = "/etc/init.d/nginx stop" | |
if cpu > 60% for 2 cycles then alert | |
if cpu > 70% for 5 cycles then restart | |
if memory usage > 70% for 5 cycles then restart | |
if failed host 127.0.0.1 port 80 then restart | |
if 3 restarts within 5 cycles then timeout | |
### Postgresql ### | |
check process postgresql | |
with pidfile "/var/run/postgresql/9.5-main.pid" | |
start program = "/usr/sbin/service postgresql start" | |
stop program = "/usr/sbin/service postgresql stop" | |
if failed host localhost port 5432 protocol pgsql then restart | |
if cpu > 80% for 5 cycles then restart | |
if memory usage > 80% for 2 cycles then restart | |
if 5 restarts within 5 cycles then timeout | |
### Redis ### | |
check process redis-server | |
with pidfile "/var/run/redis/redis-server.pid" | |
start program = "/etc/init.d/redis-server start" | |
stop program = "/etc/init.d/redis-server stop" | |
if totalmem > 100 Mb then alert | |
if children > 255 for 5 cycles then stop | |
if cpu usage > 95% for 3 cycles then restart | |
if memory usage > 80% for 5 cycles then restart | |
if failed host 127.0.0.1 port 6379 then restart | |
if 5 restarts within 5 cycles then timeout | |
### Sidekiq ### | |
check process sidekiq | |
with pidfile "/home/deploy/goodpolitics/shared/tmp/pids/sidekiq-0.pid" | |
start program = "/bin/su - deploy -c 'cd /home/deploy/goodpolitics/current && /usr/local/rvm/bin/rvm default do bundle exec sidekiq --index 0 --pidfile /home/deploy/goodpolitics/shared/tmp/pids/sidekiq-0.pid --environment production --logfile /home/deploy/goodpolitics/shared/log/sidekiq.log --daemon'" | |
stop program = "/bin/su - deploy -c 'cd /home/deploy/goodpolitics/current && /home/deploy/.rvm/bin/rvm default do bundle exec sidekiqctl stop /home/deploy/goodpolitics/shared/tmp/pids/sidekiq.pid 10'" | |
if cpu > 80% then restart | |
if memory usage > 80% for 2 cycles then restart | |
if 3 restarts within 3 cycles then timeout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment