Sha256: 7ad6a20e356780a65bccd55f1477e13f19d386d5dc0f5ce78be6d5a1bc6247fd

Contents?: true

Size: 1.64 KB

Versions: 65

Compression:

Stored size: 1.64 KB

Contents

RAILS_ROOT = "/Users/tom/dev/gravatar2"

God.watch do |w|
  w.name = "local-3000"
  w.interval = 5.seconds # default
  w.start = "mongrel_rails start -c #{RAILS_ROOT} -P #{RAILS_ROOT}/log/mongrel.pid -p 3000 -d"
  w.stop = "mongrel_rails stop -P #{RAILS_ROOT}/log/mongrel.pid"
  w.restart = "mongrel_rails restart -P #{RAILS_ROOT}/log/mongrel.pid"
  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
    
    # failsafe
    on.condition(:tries) do |c|
      c.times = 5
      c.transition = :start
    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 = 5.minute
      c.transition = :unmonitored
      c.retry_in = 10.minutes
      c.retry_times = 5
      c.retry_within = 2.hours
    end
  end
end

Version data entries

65 entries across 65 versions & 20 rubygems

Version Path
dguettler-god-0.7.13.2 examples/single.god
dguettler-god-0.7.13.3 examples/single.god
dosire-god-0.7.10 examples/single.god
dosire-god-0.7.12 examples/single.god
dosire-god-0.7.9 examples/single.god
dunedain289-god-0.7.12.1 examples/single.god
dustin-god-0.7.7.1 examples/single.god
eric-god-0.7.10 examples/single.god
eric-god-0.7.11 examples/single.god
eric-god-0.7.12 examples/single.god
eric-god-0.7.14 examples/single.god
eric-god-0.7.7 examples/single.god
fotonauts-god-0.7.10 examples/single.god
fotonauts-god-0.7.12 examples/single.god
gohanlonllc-god-0.7.9 examples/single.god
gordoncww-god-0.7.11.1 examples/single.god
jreynolds-god-0.7.13 examples/single.god
jwilkins-god-0.7.9 examples/single.god
mathieuravaux-god-0.7.11 examples/single.god
mojombo-god-0.7.10 examples/single.god