Class: Munin::PassengerMemoryStats

Inherits:
RequestLogAnalyzerPlugin show all
Defined in:
lib/munin/plugins/passenger_memory_stats.rb

Instance Attribute Summary

Attributes inherited from RequestLogAnalyzerPlugin

#debug, #environment, #graph_category, #passenger_memory_stats, #passenger_status

Instance Method Summary collapse

Methods inherited from RequestLogAnalyzerPlugin

#autoconf, #handle_arguments, #initialize, #require_command, #require_gem, #require_passenger_gem, #require_passenger_memory_stats, #require_passenger_status, #require_request_log_analyzer_gem, #require_tail_command, #require_yaml_gem, #run_command

Constructor Details

This class inherits a constructor from Munin::RequestLogAnalyzerPlugin

Instance Method Details

#configObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/munin/plugins/passenger_memory_stats.rb', line 12

def config
  memory_info = open('/proc/meminfo', 'r') do |lines|
    lines.inject({}) do |h, line|
      matched = line.match(/^([\w_\(\)]+):\s+(\d+)/)
      h[matched[1].to_sym] = matched[2].to_i * 1024
      h
    end
  end
  upper_limit = memory_info[:MemTotal]
  puts "graph_category \#{graph_category}\ngraph_title Passenger memory stats\ngraph_vlabel Bytes\ngraph_args --base 1000 -l 0 --upper-limit \#{upper_limit}\ngraph_info The memory used by passenger instances on this application server\n\nmemory.label memory\n"
  exit 0
end

#ensure_configurationObject



5
6
7
8
9
10
# File 'lib/munin/plugins/passenger_memory_stats.rb', line 5

def ensure_configuration
  require_passenger_gem
  require_passenger_memory_stats
  
  super
end

#runObject

Collect the data debug Show debug information



35
36
37
38
39
40
41
42
# File 'lib/munin/plugins/passenger_memory_stats.rb', line 35

def run
  stats = run_command(passenger_memory_stats, debug)

  #### Total private dirty RSS: 81.81 MB
  stats =~ /RSS:\s*([\d\.]+)\s*MB\Z/m
  memory = ($1.to_f * 1024 * 1024).to_i
  puts "memory.value #{memory}"
end