Sha256: fd50bf3d98b1427d06e104b6a02d357b9c0ef5bac141bbd553280a089f12684e
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 KB
Contents
class Riemann::Babbler::Memory include Riemann::Babbler def plugin options.plugins.memory end def memory m = File.read('/proc/meminfo').split(/\n/).inject({}) { |info, line| x = line.split(/:?\s+/) # Assume kB... info[x[0]] = x[1].to_i info } free = m['MemFree'].to_i + m['Buffers'].to_i + m['Cached'].to_i total = m['MemTotal'].to_i fraction = 1 - (free.to_f / total) return {:free => (free.to_f/1024), :fraction => fraction, :total => (total.to_f/1024)} end def tick current_state = memory # соотношение свободной/занятой report({ :service => plugin.service, :state => state(current_state[:fraction]), :metric => current_state[:fraction] }) # постим сообщение о свобоной памяти report({ :service => plugin.service, :metric => current_state[:free] }) if plugin.report_free # постим сообение о том сколько у нас вообще памяти report({ :service => plugin.service, :metric => current_state[:total] }) if plugin.report_total end end Riemann::Babbler::Memory.run
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
riemann-babbler-0.0.3 | lib/riemann/babbler/plugins/memory.rb |