Sha256: d6872f901b6abc1ed8439944995d1d869c1c7e2cc05d18046f3028043f6be2d6

Contents?: true

Size: 1.31 KB

Versions: 9

Compression:

Stored size: 1.31 KB

Contents

class ZabbixRubyClient
  module Plugins
    module Network
      extend self

      def collect(*args)
        host = args[0]
        interface = args[1]
        netinfo = `grep "#{interface}: " /proc/net/dev`
        if $?.to_i == 0
          _, _, rx_ok, rx_packets, rx_err, rx_drop, _, _, _, _, tx_ok, tx_packets, tx_err, tx_drop, _, _, _, _  = netinfo.split(/\s+/)
        else
          logger.warn "Please install netstat."
          return []
        end

        time = Time.now.to_i
        back = []
        back << "#{host} net.rx_ok[#{interface}] #{time} #{rx_ok}"
        back << "#{host} net.rx_packets[#{interface}] #{time} #{rx_packets}"
        back << "#{host} net.rx_err[#{interface}] #{time} #{rx_err}"
        back << "#{host} net.rx_drop[#{interface}] #{time} #{rx_drop}"
        back << "#{host} net.tx_ok[#{interface}] #{time} #{tx_ok}"
        back << "#{host} net.tx_packets[#{interface}] #{time} #{tx_packets}"
        back << "#{host} net.tx_err[#{interface}] #{time} #{tx_err}"
        back << "#{host} net.tx_drop[#{interface}] #{time} #{tx_drop}"
        return back

      end

      def discover(*args)
        interface = args[0]
        [ "net.if.discovery", "{\"{#NET_IF}\": \"#{interface}\"}" ]
      end

    end
  end
end

ZabbixRubyClient::Plugins.register('network', ZabbixRubyClient::Plugins::Network)

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
zabbix-ruby-client-0.0.15 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.14 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.13 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.12 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.11 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.10 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.9 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.8 lib/zabbix-ruby-client/plugins/network.rb
zabbix-ruby-client-0.0.7 lib/zabbix-ruby-client/plugins/network.rb