summaryrefslogtreecommitdiff
path: root/files/munin/passenger_stats
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:31 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:31 -0400
commit313e3080b1dc2bdfa048b8f3301b42e5d83b0d03 (patch)
tree10113f57c2b7e7ddd1b793f42e17b974c16653e8 /files/munin/passenger_stats
Squashed 'puppet/modules/passenger/' content from commit 47fca11
git-subtree-dir: puppet/modules/passenger git-subtree-split: 47fca117b594d30aa29d33f8d8846eeec0a88d5f
Diffstat (limited to 'files/munin/passenger_stats')
-rwxr-xr-xfiles/munin/passenger_stats47
1 files changed, 47 insertions, 0 deletions
diff --git a/files/munin/passenger_stats b/files/munin/passenger_stats
new file mode 100755
index 00000000..f06e88a0
--- /dev/null
+++ b/files/munin/passenger_stats
@@ -0,0 +1,47 @@
+#!/usr/bin/env ruby
+
+PASSENGER_STATUS = ENV['passenger_status'] || '/usr/local/bin/passenger-status'
+
+def output_config
+ puts <<-END
+graph_category Passenger
+graph_title passenger status
+graph_vlabel count
+
+sessions.label sessions
+max.label max processes
+running.label running processes
+active.label active processes
+inactive.label inactive processes
+END
+ exit 0
+end
+
+def output_values
+ status = `#{PASSENGER_STATUS}`
+ unless $?.success?
+ $stderr.puts "failed executing passenger-status"
+ exit 1
+ end
+ status =~ /max\s+=\s+(\d+)/
+ puts "max.value #{$1}"
+
+ status =~ /count\s+=\s+(\d+)/
+ puts "running.value #{$1}"
+
+ status =~ /active\s+=\s+(\d+)/
+ puts "active.value #{$1}"
+
+ status =~ /inactive\s+=\s+(\d+)/
+ puts "inactive.value #{$1}"
+
+ total_sessions = 0
+ status.scan(/Sessions: (\d+)/).flatten.each { |count| total_sessions += count.to_i }
+ puts "sessions.value #{total_sessions}"
+end
+
+if ARGV[0] == "config"
+ output_config
+else
+ output_values
+end