Module: ZabbixRubyClient::Plugins::Memory

Extended by:
Memory
Included in:
Memory
Defined in:
lib/zabbix-ruby-client/plugins/memory.rb

Instance Method Summary collapse

Instance Method Details

#collect(*args) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/zabbix-ruby-client/plugins/memory.rb', line 6

def collect(*args)
  host = args[0]
  meminfo = `vmstat -s | head -10`
  if $?.to_i == 0
    info = splitinfo(meminfo)
  else
    logger.warn "Please install sysstat."
    return []
  end

  time = Time.now.to_i
  back = []
  back << "#{host} memory[total] #{time} #{info["totalmemory"]}"
  back << "#{host} memory[used] #{time} #{info["usedmemory"]}"
  back << "#{host} memory[active] #{time} #{info["activememory"]}"
  back << "#{host} memory[inactive] #{time} #{info["inactivememory"]}"
  back << "#{host} memory[free] #{time} #{info["freememory"]}"
  back << "#{host} memory[buffer] #{time} #{info["buffermemory"]}"
  back << "#{host} memory[swap_cache] #{time} #{info["swapcache"]}"
  back << "#{host} memory[swap_total] #{time} #{info["totalswap"]}"
  back << "#{host} memory[swap_used] #{time} #{info["usedswap"]}"
  back << "#{host} memory[swap_free] #{time} #{info["freeswap"]}"
  return back
end

#splitinfo(info) ⇒ Object



31
32
33
34
35
36
37
# File 'lib/zabbix-ruby-client/plugins/memory.rb', line 31

def splitinfo(info)
  info.split(/\n/).map(&:strip).reduce({}) do |a,line|
    kb, _, label1, label2 = line.split(" ")
    a[label1+label2] = kb.to_i * 1000
    a
  end
end