Sha256: ad36e28de1ae0cecac72cd0df86502d1563d7343f01a03371aec9a2ebe8c1958
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
module Eye::Process::Watchers def add_watchers(force = false) return unless self.up? remove_watchers if force if @watchers.blank? # default watcher :check_alive add_watcher(:check_alive, self[:check_alive_period]) do check_alive GC.start if rand(1000) == 0 end # monitor childs pids if self[:monitor_children] add_watcher(:check_childs, self[:childs_update_period]) do add_or_update_childs end end # monitor conditional watchers start_checkers else warn 'try add_watchers, but its already here' end end def remove_watchers @watchers.each{|_, h| h[:timer].cancel } @watchers = {} end private def add_watcher(type, period = 2, subject = nil, &block) return if @watchers[type] debug "add watcher #{type}(#{period})" timer = every(period.to_f) do debug "check #{type}" block.call(subject) end @watchers[type] ||= {:timer => timer, :subject => subject} end def start_checkers self[:checks].each{|type, cfg| start_checker(cfg) } end def start_checker(cfg) subject = Eye::Checker.create(pid, cfg, logger.prefix) # ex: {:type => :memory, :every => 5.seconds, :below => 100.megabytes, :times => [3,5]} add_watcher("check_#{cfg[:type]}".to_sym, subject.every, subject, &method(:watcher_tick).to_proc) end def watcher_tick(subject) unless subject.check notify :crit, "Bounded #{subject.check_name}: #{subject.last_human_values}" schedule :restart, "bounded #{subject.check_name}" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eye-0.2 | lib/eye/process/watchers.rb |
eye-0.1.11 | lib/eye/process/watchers.rb |