#encoding: utf-8 require File.expand_path('../plugin_helpers', __FILE__) # Базовое описание плагина 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 :riemann alias :r :riemann attr_reader :hostname def initialize( configatron, logger, riemann ) @configatron = configatron @logger = logger @riemann = riemann @storage = Hash.new @hostname = get_hostname init plugin.set_default(:interval, configatron.plugins.interval) unless configatron.plugins.interval.nil? 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 report(event) report_with_diff(event) and return if event[:as_diff] # если нет event[:state] то попробовать его добавить unless event[:state] event[:state] = state(event[:metric]) unless plugin.states.critical.nil? end event[:metric] = event[:metric].round(2) if event[:metric].kind_of? Float event[:tags] = options.riemann.tags unless options.riemann.tags.nil? event[:host] = hostname 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 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.uniq.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 end end