public
Description: Various tools for watching beanstalkd.
Homepage:
Clone URL: git://github.com/dustin/beanstalk-tools.git
dustin (author)
Wed Jan 14 20:24:32 -0800 2009
commit  c1d37b03a6578f5c654f7cf683e1843543c4dc33
tree    36188084ee98ce835cee601b27636eb705a47580
parent  bd2ea048a8544589991d2511bd3a805018696fb7
name age message
file .gitignore Loading commit data...
file LICENSE.txt
file README.markdown
directory bin/
directory nagios/
README.markdown

Beanstalk Utilities

Here is a small collection of tools for watching, monitoring, and manipulating beanstalkd.

Interactive Commands

Interactive commands are in the bin directory.

beanstalk-stats.rb

beanstalk-stats.rb gives you a feel for how fast things are going in and out of your queue.

usage: beanstalk-stats.rb host:11300 host2:11300 [...]

beanstalk-queue-stats.rb

beanstalk-queue-stats.rb watches a single beanstalk instance and shows you which tubes contain elements, and how fast they're changing.

usage: beanstalk-queue-stats.rb host:11300

beanstalk-cleanup.rb

beanstalk-cleanup.rb is a continuously edited one-off script to help clean stuff out of queues. It pulls stuff out of the queue and defers, buries, or deletes items based on regexes over the content.

usage: vi beanstalk-cleanup.rb
       # edit the awesome hard-coded bury and delete rules
       beanstalk-cleanup.rb host:11300

beanstalk-export.rb

beanstalk-export.rb will export all of the jobs from a server. You can use it to perform a server upgrade, or migrate all of the jobs from one server another.

You should put the server in draining mode (send signal USR1) before starting this to ensure new jobs aren't getting queued. You may also consider shutting down your workers since it may otherwise cause jobs to be executed prematurely.

Note that the following job attributes are preserved:

  • tube
  • delay
  • priority
  • ttr
  • body

Anything else (e.g. buried status or number of failures) is lost in translation.

usage: beanstalk-export.rb host:11300 > export.yml

beanstalk-import.rb

beanstalk-import.rb is a tool to complement to beanstalk-export.rb by allowing the export to be loaded into another server.

usage: beanstalk-import.rb export.yml host:11300

Nagios Monitoring Scripts

beanstalk-jobs.rb

Ensures the number of jobs in the default tube fall within a reasonable range.

usage: beanstalk-jobs.rb host:11300 warn_jobs err_jobs

warn_jobs and err_jobs respectively set the maximum number of jobs found before a warning or error is issued.

beanstalk-workers.rb

Ensures that the number of workers within the queue is within range.

usage: beanstalk-workers.rb host:11300 warn_workers error_workers

warn_workers and error_workers respectively specify the minimum workers that should be in place before a warning or error is issued.

beanstalk-rate.rb

Ensures the growth rate of a particular stat is within range.

usage: beanstalk-rate.rb host:11300 stat_name err_min warn_min warn_max err_max

All min and max values are required and are interpreted as floats. The rates are expressed as units per second.

Note: this only works for stats in the default stat values right now. More work is needed to support tube specific stats.