Sha256: efe19ed4b701c046d676e961915c3339fdc3b2f4e1eedaaee8e4d47cc4b92a38

Contents?: true

Size: 1.74 KB

Versions: 18

Compression:

Stored size: 1.74 KB

Contents

#encoding: utf-8

class Riemann::Babbler::Memory < Riemann::Babbler

  def collect
    m = File.read('/proc/meminfo').split(/\n/).inject({}) { |info, line|
      x = line.split(/:?\s+/)
      info[x[0]] = x[1].to_i
      info
    }
    free = m['MemFree'].to_i * 1024
    cached =m['Cached'].to_i * 1024
    buffers =m['Buffers'].to_i * 1024
    total = m['MemTotal'].to_i * 1024
    used = total - free
    free_bc = free + buffers + cached

    fraction = 1 - (free_bc.to_f / total)
    swap_fraction = m['SwapTotal'] == 0 ? 0 : 1 - m['SwapFree'].to_f/m['SwapTotal']

    desc = "#{shell('ps -eo pmem,pid,cmd --sort -pmem | head -10').chomp}"
    [
      { :service => plugin.service + ' % free', :description => 'Memory usage, %', :metric => fraction.round(2) * 100 },
      { :service => plugin.service + ' % swap', :description => 'Swap usage, %', :metric => swap_fraction.round(2) * 100 },
      { :service => plugin.service + ' abs free', :description => "Memory free (kB)\n\n #{desc}", :metric => free, :state => 'ok' },
      { :service => plugin.service + ' abs total', :description => "Memory total (kB)\n\n #{desc}", :metric => total, :state => 'ok' },
      { :service => plugin.service + ' abs cached', :description => "Memory usage, cached (kB)\n\n #{desc}",  :metric => cached, :state => 'ok' },
      { :service => plugin.service + ' abs buffers', :description => "Memory usage, buffers (kB)\n\n #{desc}", :metric => buffers, :state => 'ok' },
      { :service => plugin.service + ' abs used', :description => "Memory usage, used (kB)\n\n #{desc}", :metric => used , :state => 'ok' },
      { :service => plugin.service + ' abs free_bc', :description => "Memory usage with cache и buffers (kB)\n\n #{desc}", :metric => free_bc , :state => 'ok' }
    ]
  end

end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
riemann-babbler-0.9.9.7 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.9.6 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.9.5 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.9.4 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.9.3 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.9.2 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.9.1 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.9 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.8 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.7 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.6 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.5 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.4 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.3 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.2 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.1 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.9.0 lib/riemann/babbler/plugins/memory.rb
riemann-babbler-0.8.9 lib/riemann/babbler/plugins/memory.rb