beanstalkd does not come with any management tools as far as I know. But if you install one of the python / ruby ââ/ perl libraries, you can write something to fairly easily convey server status.
Here is an example using python and the beanstalkc client package:
#!/usr/bin/python import beanstalkc b = beanstalkc.Connection(host='localhost', port=11300) for tube in b.tubes(): print "Tube: %s" % tube stats = b.stats_tube(tube) for k, v in stats.items(): print " %s: %s" % (k, v)
source share