#encoding: utf-8 # Базовое описание плагина module Riemann class Babbler def self.registered_plugins @plugins ||= [] end def self.inherited( klass ) registered_plugins << klass end require 'riemann/client' require 'open3' require 'timeout' require 'rest_client' attr_reader :logger attr_reader :hostname def initialize( configatron, logger ) @configatron = configatron @logger = logger @storage = Hash.new init run end # Доступ к конфигу определенного плагина def plugin plugin_name = self.class.name.split( "::" ).last.gsub( /(\p{Lower})(\p{Upper})/, "\\1_\\2" ).downcase options.plugins.send plugin_name end def options @configatron end alias :opts :options def riemann @riemann ||= Riemann::Client.new( :host => options.riemann.host, :port => options.riemann.port ) end alias :r :riemann def report(event) report_with_diff(event) and return if event[:as_diff] event[:state] = state(event[:metric]) unless plugin.states.critical.nil? event[:tags] = options.riemann.tags unless options.riemann.tags.nil? event[:host] = host logger.debug "Report status: #{event.inspect}" riemann << event end def report_with_diff(event) current_metric = event[:metric] event[:metric] = current_metric - @storage[ event[:service] ] if @storage.has_key? event[:service] @storage[ event[:service] ] = current_metric event.delete(:as_diff) report(event) end def host @hostname ||= get_hostname end def get_hostname hostname = File.read('/proc/sys/kernel/hostname').strip.downcase hostname += options.riemann.suffix unless options.riemann.suffix.nil? hostname = options.riemann.prefix + hostname unless options.riemann.prefix.nil? hostname end # не запускаем плагин есть def run_plugin true end # Переодически вызываемое действие def tick posted_array = collect posted_array = posted_array.class == Array ? posted_array : [ posted_array ] posted_array.each { |event| report event } end # Plugin init def init end def run # выйти если run_plugin не равен true return 0 unless run_plugin == true t0 = Time.now loop do begin tick rescue => e logger.error "Plugin #{self.class.name} : #{e.class} #{e}\n#{e.backtrace.join "\n"}" end sleep(plugin.interval - ((Time.now - t0) % plugin.interval)) end end # хелпер, описание статуса def state(my_state) return 'critical' if my_state.nil? 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 # хэлпер для парса 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 # http rest def rest_get(url) begin RestClient.get url rescue report({ :service => plugin.service, :state => 'critical', :description => "Response from #{url}" }) end end end end