2013-04-16 20:07:53 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import optparse
|
|
|
|
from collections import defaultdict
|
2013-10-28 15:54:32 +01:00
|
|
|
import os
|
2013-04-16 20:07:53 +02:00
|
|
|
|
2013-10-28 15:54:32 +01:00
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
2013-08-06 22:39:20 +02:00
|
|
|
from zulip_tools import check_output
|
2013-04-16 20:07:53 +02:00
|
|
|
|
|
|
|
states = {
|
|
|
|
0: "OK",
|
|
|
|
1: "WARNING",
|
|
|
|
2: "CRITICAL",
|
|
|
|
3: "UNKNOWN"
|
|
|
|
}
|
|
|
|
|
2013-10-28 15:54:32 +01:00
|
|
|
if 'USER' in os.environ and not os.environ['USER'] in ['root', 'rabbitmq']:
|
2013-04-16 20:07:53 +02:00
|
|
|
print "This script must be run as the root or rabbitmq user"
|
|
|
|
|
|
|
|
|
|
|
|
usage = """Usage: check-rabbitmq-consumers --queue=[queue-name] --min-threshold=[min-threshold]"""
|
|
|
|
|
|
|
|
parser = optparse.OptionParser(usage=usage)
|
|
|
|
parser.add_option('--queue',
|
|
|
|
dest='queue_name',
|
|
|
|
default="notify_tornado",
|
|
|
|
action='store')
|
|
|
|
parser.add_option('--min-threshold',
|
|
|
|
dest='min_count',
|
|
|
|
type="int",
|
|
|
|
default=1,
|
|
|
|
action='store')
|
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
output = check_output(['/usr/sbin/rabbitmqctl', 'list_consumers'], shell=False)
|
|
|
|
|
|
|
|
consumers = defaultdict(int)
|
|
|
|
|
|
|
|
for line in output.split('\n'):
|
|
|
|
parts = line.split('\t')
|
|
|
|
if len(parts) and parts[0] == options.queue_name:
|
|
|
|
consumers[parts[0]] += 1
|
|
|
|
|
|
|
|
|
|
|
|
now = int(time.time())
|
|
|
|
|
|
|
|
if consumers[options.queue_name] < options.min_count:
|
|
|
|
status = 2
|
|
|
|
else:
|
|
|
|
status = 0
|
|
|
|
|
|
|
|
print("%s|%s|%s|queue %s has %s consumers, needs %s" % (
|
|
|
|
now, status, states[status], options.queue_name,
|
|
|
|
consumers[options.queue_name], options.min_count))
|