require "English"
def output_config
- puts <<~END
+ puts <<~CONFIG
graph_category passenger
graph_title Passenger processes
graph_order active inactive
active.draw AREA
inactive.label idle servers
inactive.draw STACK
- END
+ CONFIG
exit 0
end
def output_values
status = `/usr/sbin/passenger-status`
unless $CHILD_STATUS.success?
- $stderr.puts "failed executing passenger-status"
+ warn "failed executing passenger-status"
exit 1
end
status =~ /active\s+=\s+(\d+)/