Skip to content

Instantly share code, notes, and snippets.

@rajeev-sourcebits
Last active September 21, 2018 13:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajeev-sourcebits/f1b95de7ad614176459d to your computer and use it in GitHub Desktop.
Save rajeev-sourcebits/f1b95de7ad614176459d to your computer and use it in GitHub Desktop.
God File for Your Server.
God.watch do |w|
w.name = "beans.app"
w.dir = '/path/to/project'
w.env = { 'PADRINO_ENV' => 'development'}
w.group = 'workers'
w.interval = 20.seconds
w.start = "beanstalkd"
w.log = "/var/log/god/beanstalkd-log.log"
# restart if memory gets too high
w.transition(:up, :restart) do |on|
on.condition(:memory_usage) do |c|
c.above = 200.megabytes
c.times = 3
end
end
# determine the state on startup
w.transition(:init, { true => :up, false => :start }) do |on|
on.condition(:process_running) do |c|
c.running = true
end
end
# determine when process has finished starting
w.transition([:start, :restart], :up) do |on|
on.condition(:process_running) do |c|
c.running = true
c.interval = 5.seconds
end
# failsafe
on.condition(:tries) do |c|
c.times = 5
c.transition = :start
c.interval = 5.seconds
end
end
# start if process is not running
w.transition(:up, :start) do |on|
on.condition(:process_running) do |c|
c.running = false
end
end
end
God.watch do |w|
w.name = "something.app"
w.dir = '/path/to/project'
w.env = { 'PADRINO_ENV' => 'development' }
w.group = 'sample-blog-workers'
w.interval = 20.seconds
w.start = "rake backburner:work"
w.log = "/var/log/god/backburner-log.log"
# restart if memory gets too high
w.transition(:up, :restart) do |on|
on.condition(:memory_usage) do |c|
c.above = 100.megabytes
c.times = 3
end
end
# determine the state on startup
w.transition(:init, { true => :up, false => :start }) do |on|
on.condition(:process_running) do |c|
c.running = true
end
end
# determine when process has finished starting
w.transition([:start, :restart], :up) do |on|
on.condition(:process_running) do |c|
c.running = true
c.interval = 5.seconds
end
# failsafe
on.condition(:tries) do |c|
c.times = 5
c.transition = :start
c.interval = 5.seconds
end
end
# start if process is not running
w.transition(:up, :start) do |on|
on.condition(:process_running) do |c|
c.running = false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment