Sha256: 1eac33e53981f0e53410ab27731c1153640b614b046afc98e659b47ac9f58f02
Contents?: true
Size: 439 Bytes
Versions: 14
Compression:
Stored size: 439 Bytes
Contents
require 'nagiosharder' module DashingContrib module Nagios class Client attr_reader :client def initialize(options = {}) @client = NagiosHarder::Site.new(options[:endpoint], options[:username], options[:password], options[:version], options[:time_format], options[:verify_ssl]) end def status(options = {}) ::DashingContrib::Nagios::Status.fetch(client, options) end end end end
Version data entries
14 entries across 14 versions & 1 rubygems