1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
God.watch do |w|
w.name = "complex"
w.interval = 5.seconds
w.start = File.join(GOD_ROOT, *%w[test configs complex simple_server.rb])
# w.log = File.join(GOD_ROOT, *%w[test configs child_events god.log])
# 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 = 2
c.transition = :start
end
end
# start if process is not running
w.transition(:up, :start) do |on|
on.condition(:process_exits)
end
# restart if process is misbehaving
w.transition(:up, :restart) do |on|
on.condition(:complex) do |cc|
cc.and(:cpu_usage) do |c|
c.above = 0.percent
c.times = 1
end
cc.and(:memory_usage) do |c|
c.above = 0.megabytes
c.times = 3
end
end
end
# lifecycle
w.lifecycle do |on|
on.condition(:flapping) do |c|
c.to_state = [:start, :restart]
c.times = 5
c.within = 20.seconds
c.transition = :unmonitored
c.retry_in = 10.seconds
c.retry_times = 2
c.retry_within = 5.minutes
end
end
end
|