Sha256: 8b923382ed0089c80ae808cbd958c5af241b3b1b6d26abc2c0ca9933f5daef93

Contents?: true

Size: 1.23 KB

Versions: 13

Compression:

Stored size: 1.23 KB

Contents

class Riemann::Babbler::Plugin::Net < Riemann::Babbler::Plugin

  WORDS = ['rx bytes',
           'rx packets',
           'rx errs',
           'rx drop',
           'rx fifo',
           'rx frame',
           'rx compressed',
           'rx multicast',
           'tx bytes',
           'tx packets',
           'tx drops',
           'tx fifo',
           'tx colls',
           'tx carrier',
           'tx compressed']

  def init
    plugin.set_default(:service, 'net')
    plugin.set_default(:include_alias, false)
    plugin.set_default(:filter, ['rx bytes', 'rx errs', 'rx drop', 'tx bytes', 'tx errs', 'tx drop'])
  end

  def collect
    f      = File.read('/proc/net/dev')
    status = Array.new
    f.split("\n").each do |line|
      iface = line.split(':')[0].strip
      iface.gsub!(/\./, '_')
      next if (iface =~ /\./ && !plugin.include_alias)
      next unless line =~ /(\w*)\:\s*([\s\d]+)\s*/
      WORDS.map do |service|
        service
      end.zip(
          $2.split(/\s+/).map { |str| str.to_i }
      ).each do |service, value|
        next unless plugin.filter.include? service
        status << { :service => "#{plugin.service} #{iface} #{service}", :metric => value, :as_diff => true }
      end
    end
    status
  end

end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
riemann-babbler-2.0.0 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre15 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre13 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre11 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre10 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre9 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre8 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre7 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre6 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre5 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre4 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre3 lib/riemann/babbler/plugins/net.rb
riemann-babbler-2.0.0pre2 lib/riemann/babbler/plugins/net.rb