lib/zabbix-ruby-client/plugins/apt.rb in zabbix-ruby-client-0.0.15 vs lib/zabbix-ruby-client/plugins/apt.rb in zabbix-ruby-client-0.0.16
- old
+ new
@@ -1,16 +1,18 @@
-class ZabbixRubyClient
+require "zabbix-ruby-client/logger"
+
+module ZabbixRubyClient
module Plugins
module Apt
extend self
def collect(*args)
host = args[0]
aptcheck = `/usr/lib/update-notifier/apt-check 2>&1`
if $?.to_i == 0
security, pending = aptcheck.split(/;/).map(&:to_i)
else
- logger.warn "Are you running on ubuntu ?"
+ Log.warn "Are you running on ubuntu ?"
return []
end
time = Time.now.to_i
back = []
back << "#{host} apt[security] #{time} #{security}"