Sha256: 4ecb64ea5358681dd09602c1f015b1c6686fdd088fb6195f1b01178cea53fb6a

Contents?: true

Size: 1.6 KB

Versions: 67

Compression:

Stored size: 1.6 KB

Contents

ENV['GOD_TEST_RAILS_ROOT'] || abort("Set a rails root for testing in an environment variable called GOD_TEST_RAILS_ROOT")

RAILS_ROOT = ENV['GOD_TEST_RAILS_ROOT']

port = 5000

God.watch do |w|
  w.name = "local-#{port}"
  w.interval = 5.seconds
  w.start = "mongrel_rails start -P ./log/mongrel.pid -c #{RAILS_ROOT} -p #{port} -d"
  w.restart = "mongrel_rails restart -P ./log/mongrel.pid -c #{RAILS_ROOT}"
  w.stop = "mongrel_rails stop -P ./log/mongrel.pid -c #{RAILS_ROOT}"
  w.group = 'mongrels'
  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 = 1
      c.above = 50.megabytes
      c.times = [3, 5]
    end
    
    on.condition(:cpu_usage) do |c|
      c.interval = 1
      c.above = 10.percent
      c.times = [3, 5]
    end
    
    on.condition(:http_response_code) do |c|
      c.host = 'localhost'
      c.port = port
      c.path = '/'
      c.code_is_not = 200
      c.timeout = 10.seconds
      c.times = [3, 5]
    end
  end
end

Version data entries

67 entries across 67 versions & 21 rubygems

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