X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/3a4d52bd4c0f8e6ae7679145846b7bc7845d8ace..5b4f815f6cd8433be1d66b8376b71452f974b225:/cookbooks/munin/files/default/plugins/passenger_processes diff --git a/cookbooks/munin/files/default/plugins/passenger_processes b/cookbooks/munin/files/default/plugins/passenger_processes index 75a369233..b8a06cf3a 100755 --- a/cookbooks/munin/files/default/plugins/passenger_processes +++ b/cookbooks/munin/files/default/plugins/passenger_processes @@ -1,24 +1,26 @@ #!/usr/bin/env ruby +require "English" + def output_config - puts <<-END -graph_category passenger -graph_title Passenger processes -graph_order active inactive -graph_vlabel processes -graph_total total + puts <<~END + graph_category passenger + graph_title Passenger processes + graph_order active inactive + graph_vlabel processes + graph_total total -active.label busy servers -active.draw AREA -inactive.label idle servers -inactive.draw STACK -END + active.label busy servers + active.draw AREA + inactive.label idle servers + inactive.draw STACK + END exit 0 end def output_values status = `/usr/sbin/passenger-status` - unless $?.success? + unless $CHILD_STATUS.success? $stderr.puts "failed executing passenger-status" exit 1 end