Sha256: a80150d99f78f1f10c79440655a9adf7ee8e282a17605ed1b897179c52e21213
Contents?: true
Size: 1.02 KB
Versions: 30
Compression:
Stored size: 1.02 KB
Contents
class Riemann::Babbler::Http < Riemann::Babbler def init plugin.set_default(:service, 'http check') plugin.set_default(:interval, 60) plugin.states.set_default(:critical, 1) plugin.set_default(:http_code, 200) plugin.set_default(:http_method, 'GET') plugin.set_default(:connect_timeout, 5) plugin.set_default(:retry, 0) plugin.set_default(:retry_delay, 0) plugin.set_default(:max_time, 10) plugin.set_default(:url, 'http://127.0.0.1:80') end def collect command = "curl -X#{plugin.http_method} -s" command += " --connect-timeout #{plugin.connect_timeout}" command += " -w '%{http_code}\\n'" command += " --retry #{plugin.retry} --retry-delay #{plugin.retry_delay}" command += " --max-time #{plugin.max_time} --fail" command += " #{plugin.url} -o /dev/null" out = shell(command).to_i if out != plugin.http_code metric = 1 else metric = 0 end {:service => plugin.service, :metric => metric, :description => "http_code: #{out}"} end end
Version data entries
30 entries across 30 versions & 1 rubygems