#encoding: utf-8 # Базовое описание плагина module Riemann module Babbler require 'riemann/client' require 'open3' require 'timeout' def self.included(base) base.instance_eval do def run new.run end end end def initialize @configatron = $configatron super end def log @logger ||= $logger end def options @configatron end alias :opts :options def report(event) event[:tags] = options.riemann.tags unless options.riemann.tags.nil? event[:host] = host log.debug "Report status: #{event.inspect}" riemann << event end def host hostname = `hostname`.chomp.downcase hostname += options.riemann.suffix unless options.riemann.suffix.nil? hostname = options.riemann.prefix + hostname unless options.riemann.prefix.nil? hostname end def riemann @riemann ||= Riemann::Client.new( :host => options.riemann.host, :port => options.riemann.port ) end alias :r :riemann def run t0 = Time.now loop do begin tick rescue => e #report({:service => plugin.service, :status => 'critical'}) $stderr.puts "#{e.class} #{e}\n#{e.backtrace.join "\n"}" end sleep(plugin.interval - ((Time.now - t0) % plugin.interval)) end end # Переодически вызываемое действие def tick end # Доступ к конфигу определенного плагина def plugin end # хэлпер для парса stdout+stderr и exit status def shell(*cmd) exit_status=nil err=nil out=nil Timeout::timeout(5) { Open3.popen3(*cmd) do |stdin, stdout, stderr, wait_thread| err = stderr.gets(nil) out = stdout.gets(nil) [stdin, stdout, stderr].each{|stream| stream.send('close')} exit_status = wait_thread.value end } if exit_status.to_i > 0 err = err.chomp if err raise err elsif out return out.chomp else return true end end # хелпер, описание статуса def state(my_state) unless plugin.states.warning.nil? case when my_state.between?(plugin.states.warning, plugin.states.critical) 'warning' when my_state > plugin.states.warning 'critical' else 'ok' end else my_state >= plugin.states.critical ? 'critical' : 'ok' end end end end