2016-04-07 15:03:22 +02:00
|
|
|
#!/usr/bin/env python
|
2013-04-16 20:07:53 +02:00
|
|
|
|
2016-03-10 17:15:34 +01:00
|
|
|
from __future__ import print_function
|
2013-04-16 20:07:53 +02:00
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import optparse
|
|
|
|
from collections import defaultdict
|
2013-10-28 15:54:32 +01:00
|
|
|
import os
|
2013-11-08 22:45:20 +01:00
|
|
|
import subprocess
|
2013-04-16 20:07:53 +02:00
|
|
|
|
2017-03-05 00:35:26 +01:00
|
|
|
if False:
|
|
|
|
from typing import Dict
|
|
|
|
|
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']:
|
2016-03-10 17:15:34 +01:00
|
|
|
print("This script must be run as the root or rabbitmq user")
|
2013-04-16 20:07:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
usage = """Usage: check-rabbitmq-consumers --queue=[queue-name] --min-threshold=[min-threshold]"""
|
|
|
|
|
|
|
|
parser = optparse.OptionParser(usage=usage)
|
|
|
|
parser.add_option('--min-threshold',
|
|
|
|
dest='min_count',
|
|
|
|
type="int",
|
|
|
|
default=1,
|
|
|
|
action='store')
|
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
2016-07-23 20:33:58 +02:00
|
|
|
output = subprocess.check_output(['/usr/sbin/rabbitmqctl', 'list_consumers'],
|
|
|
|
universal_newlines=True)
|
2013-04-16 20:07:53 +02:00
|
|
|
|
2016-07-23 20:33:58 +02:00
|
|
|
consumers = defaultdict(int) # type: Dict[str, int]
|
2013-04-16 20:07:53 +02:00
|
|
|
|
2017-02-19 22:17:23 +01:00
|
|
|
sys.path.append(os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))))
|
2017-02-21 06:47:56 +01:00
|
|
|
from scripts.lib.zulip_tools import su_to_zulip
|
2017-02-23 07:56:03 +01:00
|
|
|
queues = {
|
|
|
|
'digest_emails',
|
|
|
|
'email_mirror',
|
|
|
|
'embed_links',
|
|
|
|
'error_reports',
|
|
|
|
'feedback_messages',
|
|
|
|
'invites',
|
|
|
|
'message_sender',
|
|
|
|
'missedmessage_emails',
|
2017-03-06 08:45:59 +01:00
|
|
|
'missedmessage_email_senders',
|
2017-02-23 07:56:03 +01:00
|
|
|
'missedmessage_mobile_notifications',
|
|
|
|
'notify_tornado',
|
|
|
|
'signups',
|
|
|
|
'slow_queries',
|
|
|
|
'tornado_return',
|
|
|
|
'user_activity'
|
|
|
|
'user_activity_interval',
|
|
|
|
'user_presence',
|
|
|
|
}
|
2016-08-12 23:09:36 +02:00
|
|
|
|
2017-02-23 07:56:03 +01:00
|
|
|
for queue_name in queues:
|
2017-02-21 06:47:56 +01:00
|
|
|
queue_name = queue_name.strip()
|
2016-08-12 23:09:36 +02:00
|
|
|
consumers[queue_name] = 0
|
|
|
|
|
2013-04-16 20:07:53 +02:00
|
|
|
for line in output.split('\n'):
|
|
|
|
parts = line.split('\t')
|
2016-08-12 23:09:36 +02:00
|
|
|
if len(parts) >= 2:
|
2013-04-16 20:07:53 +02:00
|
|
|
consumers[parts[0]] += 1
|
|
|
|
|
|
|
|
now = int(time.time())
|
|
|
|
|
2016-08-12 23:09:36 +02:00
|
|
|
for queue_name in consumers.keys():
|
|
|
|
state_file_path = "/var/lib/nagios_state/check-rabbitmq-consumers-" + queue_name
|
|
|
|
state_file_tmp = state_file_path + "-tmp"
|
2013-04-16 20:07:53 +02:00
|
|
|
|
2016-08-12 23:09:36 +02:00
|
|
|
if consumers[queue_name] < options.min_count:
|
|
|
|
status = 2
|
|
|
|
else:
|
|
|
|
status = 0
|
|
|
|
with open(state_file_tmp, "w") as f:
|
|
|
|
f.write("%s|%s|%s|queue %s has %s consumers, needs %s\n" % (
|
|
|
|
now, status, states[status], queue_name,
|
|
|
|
consumers[queue_name], options.min_count))
|
|
|
|
subprocess.check_call(["mv", state_file_tmp, state_file_path])
|