X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ff044920428608b2c04507ad52d6ab52c9d6555f..a23861f3d22a827bc1d4676832c7174e24de53df:/cookbooks/munin/files/default/plugins/passenger_memory diff --git a/cookbooks/munin/files/default/plugins/passenger_memory b/cookbooks/munin/files/default/plugins/passenger_memory index 2ce1a305f..1aa9a7764 100755 --- a/cookbooks/munin/files/default/plugins/passenger_memory +++ b/cookbooks/munin/files/default/plugins/passenger_memory @@ -3,6 +3,8 @@ # by Dan Manges, http://www.dcmanges.com/blog/rails-application-visualization-with-munin # NOTE: you might need to add munin to allow passwordless sudo for passenger-memory-stats +require "English" + def output_config puts <<-END graph_args --base 1024 -l 0 --vertical-label bytes --upper-limit 4056231936 @@ -16,12 +18,12 @@ end def output_values status = `/usr/sbin/passenger-memory-stats | tail -1` - unless $?.success? + unless $CHILD_STATUS.success? $stderr.puts "failed executing passenger-memory-stats" exit 1 end status =~ /(\d+\.\d+)/ - puts "memory.value #{($1.to_f * 1024 * 1024).round}" + puts "memory.value #{(Regexp.last_match[1].to_f * 1024 * 1024).round}" end if ARGV[0] == "config"