Sha256: 71f2fc93153fdf2e8eb3fb7a64e585ac2191067933dc332197b8877297a33085

Contents?: true

Size: 1.06 KB

Versions: 12

Compression:

Stored size: 1.06 KB

Contents

God.watch do |w|
  w.name = "child-events"
  w.interval = 5.seconds
  w.start = File.join(GOD_ROOT, *%w[test configs child_events 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

  # 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

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
resurrected_god-0.14.0 test/configs/child_events/child_events.god
mcproc-2016.2.20 test/configs/child_events/child_events.god
god-0.13.7 test/configs/child_events/child_events.god
god-0.13.6 test/configs/child_events/child_events.god
god-0.13.5 test/configs/child_events/child_events.god
god-0.13.4 test/configs/child_events/child_events.god
god-0.13.3 test/configs/child_events/child_events.god
god-0.13.2 test/configs/child_events/child_events.god
god-0.13.1 test/configs/child_events/child_events.god
god-0.13.0 test/configs/child_events/child_events.god
god-0.12.1 test/configs/child_events/child_events.god
god-0.12.0 test/configs/child_events/child_events.god