Sha256: 590cde4542b883cc9969e5a9876f05cf42ad7365bcf9f4fb0d3e58106dc48821
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 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(: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 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} #{service} #{iface}", :metric => value, :as_diff => true } end end status end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
riemann-babbler-2.0.0pre1 | lib/riemann/babbler/plugins/net.rb |