mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
Adding Monit.
This commit is contained in:
parent
499d86c226
commit
55898e3aef
2 changed files with 27 additions and 2 deletions
19
config/monit.conf
Normal file
19
config/monit.conf
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
set daemon 120
|
||||||
|
|
||||||
|
set logfile /var/log/monit.log
|
||||||
|
|
||||||
|
set eventqueue
|
||||||
|
basedir /var/monit # set the base directory where events will be stored
|
||||||
|
slots 100 # optionally limit the queue size
|
||||||
|
|
||||||
|
# If no feeds have been fetched in the last 10 minutes, something is wrong
|
||||||
|
check file newsblur.log with path /home/sclay/newsblur/logs/newsblur.log
|
||||||
|
if timestamp > 10 minutes then exec "/home/sclay/newsblur/utils/kill_celeryd.sh"
|
||||||
|
as uid sclay and gid sclay
|
||||||
|
|
||||||
|
check system task_server
|
||||||
|
if loadavg (1min) > 12 then exec "/home/sclay/newsblur/utils/kill_celeryd.sh"
|
||||||
|
as uid sclay and gid sclay
|
||||||
|
if loadavg (5min) > 8 then exec "/home/sclay/newsblur/utils/kill_celeryd.sh"
|
||||||
|
as uid sclay and gid sclay
|
||||||
|
|
10
fabfile.py
vendored
10
fabfile.py
vendored
|
@ -17,7 +17,7 @@ env.user = 'sclay'
|
||||||
env.roledefs ={
|
env.roledefs ={
|
||||||
'app': ['www.newsblur.com'],
|
'app': ['www.newsblur.com'],
|
||||||
'db': ['db01.newsblur.com'],
|
'db': ['db01.newsblur.com'],
|
||||||
'task': ['task01.newsblur.com', 'task02.newsblur.com', '199.15.250.231', '199.15.250.250'],
|
'task': ['task01.newsblur.com', 'task02.newsblur.com', 'task03.newsblur.com', 'task04.newsblur.com'],
|
||||||
}
|
}
|
||||||
|
|
||||||
# ================
|
# ================
|
||||||
|
@ -138,7 +138,7 @@ def setup_task():
|
||||||
def setup_installs():
|
def setup_installs():
|
||||||
sudo('apt-get -y update')
|
sudo('apt-get -y update')
|
||||||
sudo('apt-get -y upgrade')
|
sudo('apt-get -y upgrade')
|
||||||
sudo('apt-get -y install build-essential gcc scons libreadline-dev sysstat iotop git zsh python-dev locate python-software-properties libpcre3-dev libssl-dev make pgbouncer python-psycopg2 libmemcache0 memcached python-memcache libyaml-0-2 python-yaml python-numpy python-scipy python-imaging munin munin-node munin-plugins-extra curl')
|
sudo('apt-get -y install build-essential gcc scons libreadline-dev sysstat iotop git zsh python-dev locate python-software-properties libpcre3-dev libssl-dev make pgbouncer python-psycopg2 libmemcache0 memcached python-memcache libyaml-0-2 python-yaml python-numpy python-scipy python-imaging munin munin-node munin-plugins-extra curl ntp monit')
|
||||||
sudo('add-apt-repository ppa:pitti/postgresql')
|
sudo('add-apt-repository ppa:pitti/postgresql')
|
||||||
sudo('apt-get -y update')
|
sudo('apt-get -y update')
|
||||||
sudo('apt-get -y install postgresql-client-9.0')
|
sudo('apt-get -y install postgresql-client-9.0')
|
||||||
|
@ -210,6 +210,12 @@ def config_pgbouncer():
|
||||||
sudo('chown postgres.postgres /var/run/postgresql')
|
sudo('chown postgres.postgres /var/run/postgresql')
|
||||||
sudo('echo "START=1" > /etc/default/pgbouncer')
|
sudo('echo "START=1" > /etc/default/pgbouncer')
|
||||||
|
|
||||||
|
def config_monit():
|
||||||
|
# sudo('apt-get install -y monit')
|
||||||
|
put('config/monit.conf', '/etc/monit/conf.d/celery.conf', use_sudo=True)
|
||||||
|
sudo('echo "startup=1" > /etc/default/monit')
|
||||||
|
sudo('/etc/init.d/monit restart')
|
||||||
|
|
||||||
def setup_mongoengine():
|
def setup_mongoengine():
|
||||||
with cd('~/code'):
|
with cd('~/code'):
|
||||||
run('git clone https://github.com/hmarr/mongoengine.git')
|
run('git clone https://github.com/hmarr/mongoengine.git')
|
||||||
|
|
Loading…
Add table
Reference in a new issue