xiaodongwang 4ca08e44e7 merge new change to master
Change-Id: I566f0183532979e53af75b56ac89a9f25ff6c1ad
2014-11-03 17:32:27 -08:00

218 lines
7.7 KiB
Python

# Name: rabbitmq-collectd-plugin - rabbitmq_info.py
# Author: https://github.com/phrawzty/rabbitmq-collectd-plugin/commits/master
# Description: This plugin uses Collectd's Python plugin to obtain RabbitMQ
# metrics.
#
# Copyright 2012 Daniel Maher
# Copyright 2014 Xinyu Zhao
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import collectd
import subprocess
import re
import requests
NAME = 'rabbitmq_info'
# Override in config by specifying 'RmqcBin'.
RABBITMQCTL_BIN = '/usr/sbin/rabbitmqctl'
RABBITMQ_API = 'http://localhost:15672/api/queues'
# Override in config by specifying 'PmapBin'
PMAP_BIN = '/usr/bin/pmap'
# Override in config by specifying 'PidofBin'.
PIDOF_BIN = '/bin/pidof'
# Override in config by specifying 'PidFile.
PID_FILE = "/var/run/rabbitmq/pid"
# Override in config by specifying 'Vhost'.
VHOST = "/"
# Override in config by specifying 'Verbose'.
VERBOSE_LOGGING = False
USER = 'guest'
PASS = 'guest'
# Obtain the interesting statistical info
def get_stats():
stats = {}
stats['ctl_messages'] = 0
stats['ctl_memory'] = 0
stats['ctl_consumers'] = 0
stats['pmap_mapped'] = 0
stats['pmap_used'] = 0
stats['pmap_shared'] = 0
# call http api instead of rabbitmqctl to collect statistics due to issue:
# https://github.com/phrawzty/rabbitmq-collectd-plugin/issues/5
try:
r = requests.get('%s' % RABBITMQ_API,
auth=('%s' % USER, '%s' % PASS))
# p = subprocess.Popen([RABBITMQCTL_BIN, '-q', '-p', VHOST,
# 'list_queues', 'name', 'messages', 'memory', 'consumers'],
# shell=False, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except:
logger('err', 'Failed to run curl %s/%s' % (RABBITMQ_API, VHOST))
return None
# for line in p.stdout.readlines():
# ctl_stats = line.split()
# try:
# ctl_stats[1] = int(ctl_stats[1])
# ctl_stats[2] = int(ctl_stats[2])
# ctl_stats[3] = int(ctl_stats[3])
# except:
# continue
# queue_name = ctl_stats[0]
# stats['ctl_messages'] += ctl_stats[1]
# stats['ctl_memory'] += ctl_stats[2]
# stats['ctl_consumers'] += ctl_stats[3]
# stats['ctl_messages_%s' % queue_name] = ctl_stats[1]
# stats['ctl_memory_%s' % queue_name] = ctl_stats[2]
# stats['ctl_consumers_%s' % queue_name] = ctl_stats[3]
try:
resp = r.json()
except:
logger('err', 'No result found for this vhost')
return None
for i in resp:
if i['vhost'] == VHOST:
# AN issue here is that the name has a GUID embedded and this is not a correct
# metric name for a time series database. The next lines attempt to remeady this
# by removing anything after the first or second character sequence followed by "_".
iname = str(i['name']).split("_")
#logger('warn', 'iname = %s simplified.' % iname)
#logger('warn', 'Simplified from i[name] = %s.' % str(i['name']))
iname = str(i['name']).split("_")
if(len(iname) > 1):
if(iname[0] == 'reply'):
mname = iname[0]
else:
mname = iname[0] + "_" + iname[1]
else:
mname = iname[0]
if "messages" in i:
stats['ctl_messages'] += i['messages']
#stats['ctl_messages_%s' % i['name']] = i['messages']
stats['ctl_messages_%s' % mname ] = i['messages']
#logger('warn', 'ctl_message = %s.' % str(i['messages']))
if "memory" in i:
stats['ctl_memory'] += i['memory']
#stats['ctl_memory_%s' % i['name']] = i['memory']
stats['ctl_memory_%s' % mname ] = i['memory']
#logger('warn', 'ctl_memory = %s.' % str(i['memory']))
if "consumers" in i:
stats['ctl_consumers'] += i['consumers']
#stats['ctl_consumers_%s' % i['name']] = i['consumers']
stats['ctl_consumers_%s' % mname ] = i['consumers']
#logger('warn', 'ctl_consumers = %s.' % str(i['consumers']))
if not stats['ctl_memory'] > 0:
logger('warn', '%s reports 0 memory usage. This is probably incorrect.'
% RABBITMQ_API)
# get the pid of rabbitmq
try:
with open(PID_FILE, 'r') as f:
pid = f.read().strip()
except:
logger('err', 'Unable to read %s' % PID_FILE)
return None
# use pmap to get proper memory stats
try:
p = subprocess.Popen([PMAP_BIN, '-d', pid], shell=False,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except:
logger('err', 'Failed to run %s' % PMAP_BIN)
return None
line = p.stdout.readlines()[-1].strip()
if re.match('mapped', line):
m = re.match(r"\D+(\d+)\D+(\d+)\D+(\d+)", line)
stats['pmap_mapped'] = int(m.group(1))
stats['pmap_used'] = int(m.group(2))
stats['pmap_shared'] = int(m.group(3))
else:
logger('warn', '%s returned something strange.' % PMAP_BIN)
return None
# Verbose output
logger('verb', '[rmqctl] Messages: %i, Memory: %i, Consumers: %i' %
(stats['ctl_messages'], stats['ctl_memory'],
stats['ctl_consumers']))
logger('verb', '[pmap] Mapped: %i, Used: %i, Shared: %i' %
(stats['pmap_mapped'], stats['pmap_used'], stats['pmap_shared']))
return stats
# Config data from collectd
def configure_callback(conf):
global RABBITMQCTL_BIN, PMAP_BIN, PID_FILE, VERBOSE_LOGGING
global VHOST, RABBITMQ_API, USER, PASS
for node in conf.children:
if node.key == 'RmqcBin':
RABBITMQCTL_BIN = node.values[0]
elif node.key == 'PmapBin':
PMAP_BIN = node.values[0]
elif node.key == 'PidFile':
PID_FILE = node.values[0]
elif node.key == 'Verbose':
VERBOSE_LOGGING = bool(node.values[0])
elif node.key == 'Vhost':
VHOST = node.values[0]
elif node.key == 'User':
USER = node.values[0]
elif node.key == 'Pass':
PASS = node.values[0]
elif node.key == 'Api':
RABBITMQ_API == node.values[0]
else:
logger('warn', 'Unknown config key: %s' % node.key)
# Send info to collectd
def read_callback():
logger('verb', 'read_callback')
info = get_stats()
if not info:
logger('err', 'No information received - very bad.')
return
logger('verb', 'About to trigger the dispatch..')
# send values
for key in info:
logger('verb', 'Dispatching %s : %i' % (key, info[key]))
val = collectd.Values(plugin=NAME)
val.type = 'gauge'
val.type_instance = key
val.values = [int(info[key])]
val.dispatch()
# Send log messages (via collectd)
def logger(t, msg):
if t == 'err':
collectd.error('%s: %s' % (NAME, msg))
if t == 'warn':
collectd.warning('%s: %s' % (NAME, msg))
elif t == 'verb' and VERBOSE_LOGGING is True:
collectd.info('%s: %s' % (NAME, msg))
# Runtime
collectd.register_config(configure_callback)
collectd.warning('Initialising rabbitmq_info')
collectd.register_read(read_callback)