Sha256: e913f1baa70e9de8581eb602e80aaf5491ab95b1ffa3b3fed4b2ce7689f9dd25
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
require "zabbixapi/version" require "zabbixapi/client" class ZabbixApi attr :client def self.connect(options = {}) new(options) end def self.current @current ||= ZabbixApi.new end def query(data) @client.api_request(:method => data[:method], :params => data[:params]) end def initialize(options = {}) @client = Client.new(options) case @client.api_version when "1.3", "1.2" apidir = "1.8" when "1.4", "2.0.4", "2.0.5", "2.0.6" apidir = "2.0" else raise "unknown Api version!" end Dir["#{File.dirname(__FILE__)}/zabbixapi/#{apidir}/basic/*.rb"].each { |f| load(f) } Dir["#{File.dirname(__FILE__)}/zabbixapi/#{apidir}/classes/*.rb"].each { |f| load(f) } end def server @server ||= Server.new(@client) end def users @users ||= Users.new(@client) end def items @items ||= Items.new(@client) end def hosts @hosts ||= Hosts.new(@client) end def applications @applications ||= Applications.new(@client) end def templates @templates ||= Templates.new(@client) end def hostgroups @hostgroups ||= HostGroups.new(@client) end def triggers @triggers ||= Triggers.new(@client) end def graphs @graphs ||= Graphs.new(@client) end def screens @screens ||= Screens.new(@client) end def usergroups @usergroups ||= Usergroups.new(@client) end def mediatypes @mediatypes ||= Mediatypes.new(@client) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
zabbixapi-0.6.0 | lib/zabbixapi.rb |
zabbixapi-0.5.9 | lib/zabbixapi.rb |