Sha256: aab2906f95bfac158be8ed4e5ac8db7bc48642e09919b3d70336fa5c1c0fbe61

Contents?: true

Size: 1.93 KB

Versions: 22

Compression:

Stored size: 1.93 KB

Contents

# This example shows how you might keep a local development Rails server up
# and running on your Mac.

# Run with:
# god -c /path/to/events.god

RAILS_ROOT = "/Users/tom/dev/helloworld"

God::Contacts::Email.delivery_method = :smtp
God::Contacts::Email.server_settings = {}

God.contact(:email) do |c|
  c.name = 'tom'
  c.email = 'tom@powerset.com'
  c.group = 'developers'
  c.throttle = 30.minutes
end

God.watch do |w|
  w.name = "local-3000"
  w.interval = 5.seconds
  w.start = "mongrel_rails start -P ./log/mongrel.pid -c #{RAILS_ROOT} -d"
  w.stop = "mongrel_rails stop -P ./log/mongrel.pid -c #{RAILS_ROOT}"
  w.pid_file = File.join(RAILS_ROOT, "log/mongrel.pid")
  
  # clean pid files before start if necessary
  w.behavior(:clean_pid_file)
  
  # 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
    end
  end

  # start if process is not running
  w.transition(:up, :start) do |on|
    on.condition(:process_exits)
  end
  
  # restart if memory or cpu is too high
  w.transition(:up, :restart) do |on|
    on.condition(:memory_usage) do |c|
      c.interval = 20
      c.above = 50.megabytes
      c.times = [3, 5]
    end
    
    on.condition(:cpu_usage) do |c|
      c.interval = 10
      c.above = 10.percent
      c.times = [3, 5]
    end
  end
  
  # lifecycle
  w.lifecycle do |on|
    on.condition(:flapping) do |c|
      c.to_state = [:start, :restart]
      c.times = 5
      c.within = 30.seconds
      c.transition = nil
      c.retry = 60.seconds
      c.giveup_tries = 5
      c.notify = 'tom'
    end
    
    on.condition(:memory_usage) do |c|
      c.interval = 20
      c.above = 40.megabytes
      c.times = [3, 5]
      c.notify = 'tom'
    end
  end
end

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
eric-god-0.7.14 ideas/future.god
mathieuravaux-god-0.7.11 ideas/future.god
mojombo-god-0.7.14 ideas/future.god
mojombo-god-0.7.15 ideas/future.god
mojombo-god-0.7.16 ideas/future.god
mojombo-god-0.7.20 ideas/future.god
olgen-god-0.9.2 ideas/future.god
olgen-god-0.9.1 ideas/future.god
olgen-god-0.9.0 ideas/future.god
god-0.8.0 ideas/future.god
olgen-god-0.8.2 ideas/future.god
olgen-god-0.8.1 ideas/future.god
olgen-god-0.8.0 ideas/future.god
god-0.7.22 ideas/future.god
god-0.7.21 ideas/future.god
god-0.7.20 ideas/future.god
god-0.7.19 ideas/future.god
god-0.7.18 ideas/future.god
god-0.7.17 ideas/future.god
god-0.7.16 ideas/future.god