Tim Lytle
Tim Lytle

Reputation: 17624

Stats/Monitor/Inspector for beanstalkd

Does anyone know of an app that can monitor a beanstalkd queue? I'm looking for something that shows stats on tubes and jobs, and allows you to inspect the details.

I'm not really picky about language/platform, just want to know if there's something out there before I write my own.

Upvotes: 25

Views: 18076

Answers (8)

Russ
Russ

Reputation: 11325

beanstalktop is excellent/essential. It is a top-like interface that shows you the status of all your tubes. You get live job counts of various states for all tubes, and some general stats.

https://github.com/wewriteapps/beanstalktop

Upvotes: 1

xuri
xuri

Reputation: 903

aurora: Cross-platform Beanstalk queue server console.

https://github.com/xuri/aurora

Upvotes: 0

schickling
schickling

Reputation: 4230

I've just written a new Beanstalkd CLI tool. It should run on all platforms and doesn't have any dependencies.

https://github.com/schickling/beanstalkd-cli/

Upvotes: 1

smokris
smokris

Reputation: 11840

All of these and at least two others are listed on the beanstalkd wiki tools page:

The best ones are:

Upvotes: 24

Bryan Larsen
Bryan Larsen

Reputation: 10006

All of these and at least two others are listed on the beanstalkd wiki tools page:

https://github.com/kr/beanstalkd/wiki/Tools

Upvotes: 0

Gleb Filippov
Gleb Filippov

Reputation: 149

Another one is here https://github.com/ptrofimov/beanstalk_console (php web monitoring interface )

Upvotes: 6

Matthieu Napoli
Matthieu Napoli

Reputation: 49553

Another solution based on PHP (for fast and easy deployment): phpBeanstalkdAdmin.

Disclaimer: I am the creator of this tool ;)

Upvotes: 3

Alister Bulman
Alister Bulman

Reputation: 35149

Also very new: https://github.com/denniskuczynski/beanstalkd_view (Ruby/Sinatra app)

Upvotes: 4

Related Questions