Sha256: fa5587e414182bc37e49c7907f02c7078fccaab3045ed7411b7a143f8300c6f1
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
God.watch do |w| w.name = "mysql" w.interval = 30.seconds # default w.start = "/etc/init.d/mysql start" w.stop = "/etc/init.d/mysql stop" w.restart = "/etc/init.d/mysql restart" w.start_grace = 20.seconds w.restart_grace = 20.seconds w.pid_file = "/var/run/mysqld/mysqld.pid" 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 = 8 c.within = 2.minutes 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 = 1.minute c.transition = :unmonitored c.retry_in = 10.minutes c.retry_times = 5 c.retry_within = 2.hours end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
Empact-deprec-1.99.21 | lib/deprec/templates/god/god_mysql.erb |