dan-manges (owner)

Revisions

gist: 20321 Download_button fork
public
Description:
munin plugin for bj
Public Clone URL: git://gist.github.com/20321.git
bj_queue.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env ruby
 
def output_config
  puts <<-END
graph_category App
graph_title bj queue
graph_vlabel count
 
jobs.label pending jobs
END
  exit 0
end
 
def output_values
  ENV["RAILS_ENV"] = "production"
  require "/redacted/current/config/environment.rb"
  puts "jobs.value #{Bj::Table::Job.count :conditions => {:state => "pending"}}"
end
 
if ARGV[0] == "config"
  output_config
else
  output_values
end