forked from powdahound/redis-collectd-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis_info.py
164 lines (134 loc) · 5.17 KB
/
redis_info.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# redis-collectd-plugin - redis_info.py
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; only version 2 of the License is applicable.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Authors:
# Garret Heaton <powdahound at gmail.com>
#
# About this plugin:
# This plugin uses collectd's Python plugin to record Redis information.
#
# collectd:
# http://collectd.org
# Redis:
# http://redis.googlecode.com
# collectd-python:
# http://collectd.org/documentation/manpages/collectd-python.5.shtml
import collectd
import socket
# Host to connect to. Override in config by specifying 'Host'.
REDIS_HOST = 'localhost'
# Port to connect on. Override in config by specifying 'Port'.
REDIS_PORT = 6379
# Verbose logging on/off. Override in config by specifying 'Verbose'.
VERBOSE_LOGGING = False
def fetch_info():
"""Connect to Redis server and request info"""
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((REDIS_HOST, REDIS_PORT))
log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT))
except socket.error, e:
collectd.error('redis_info plugin: Error connecting to %s:%d - %r'
% (REDIS_HOST, REDIS_PORT, e))
return None
fp = s.makefile('r')
log_verbose('Sending info command')
s.sendall('info\r\n')
status_line = fp.readline()
content_length = int(status_line[1:-1]) # status_line looks like: $<content_length>
data = fp.read(content_length)
log_verbose('Received data: %s' % data)
s.close()
return parse_info(data.split("\n"))
def parse_info(info_lines):
"""Parse info response from Redis"""
info = {}
for line in info_lines:
if "" == line:
continue
if ':' not in line:
collectd.warning('redis_info plugin: Bad format for info line: %s'
% line)
continue
key, val = line.split(':')
# Handle multi-value keys (for dbs).
# db lines look like "db0:keys=10,expire=0"
if ',' in val:
split_val = val.split(',')
val = {}
for sub_val in split_val:
k, _, v = sub_val.rpartition('=')
val[k] = v
info[key] = val
info["changes_since_last_save"] = info.get("changes_since_last_save", info.get("rdb_changes_since_last_save"))
return info
def configure_callback(conf):
"""Receive configuration block"""
global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING
for node in conf.children:
if node.key == 'Host':
REDIS_HOST = node.values[0]
elif node.key == 'Port':
REDIS_PORT = int(node.values[0])
elif node.key == 'Verbose':
VERBOSE_LOGGING = bool(node.values[0])
else:
collectd.warning('redis_info plugin: Unknown config key: %s.'
% node.key)
log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT))
def dispatch_value(info, key, type, type_instance=None):
"""Read a key from info response data and dispatch a value"""
if key not in info:
collectd.warning('redis_info plugin: Info key not found: %s' % key)
return
if not type_instance:
type_instance = key
value = int(info[key])
log_verbose('Sending value: %s=%s' % (type_instance, value))
val = collectd.Values(plugin='redis_info')
val.type = type
val.type_instance = type_instance
val.values = [value]
val.dispatch()
def read_callback():
log_verbose('Read callback called')
info = fetch_info()
if not info:
collectd.error('redis plugin: No info received')
return
# send high-level values
dispatch_value(info, 'uptime_in_seconds','gauge')
dispatch_value(info, 'connected_clients', 'gauge')
dispatch_value(info, 'connected_slaves', 'gauge')
dispatch_value(info, 'blocked_clients', 'gauge')
dispatch_value(info, 'used_memory', 'bytes')
dispatch_value(info, 'changes_since_last_save', 'gauge')
dispatch_value(info, 'total_connections_received', 'counter',
'connections_recieved')
dispatch_value(info, 'total_commands_processed', 'counter',
'commands_processed')
# database and vm stats
for key in info:
if key.startswith('vm_stats_'):
dispatch_value(info, key, 'gauge')
if key.startswith('db'):
dispatch_value(info[key], 'keys', 'gauge', '%s-keys' % key)
def log_verbose(msg):
if not VERBOSE_LOGGING:
return
collectd.info('redis plugin [verbose]: %s' % msg)
# register callbacks
collectd.register_config(configure_callback)
collectd.register_read(read_callback)