forked from powdahound/redis-collectd-plugin
-
Notifications
You must be signed in to change notification settings - Fork 8
/
redis_info.py
298 lines (252 loc) · 10.2 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# 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>
# Contributors:
# Pierre Mavro <[email protected]> / Deimosfr <deimos at deimos.fr>
# https://github.com/powdahound/redis-collectd-plugin/graphs/contributors
#
# 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 re
import socket
import collectd
from redis_client import RedisClient, RedisError
class RedisCollector:
def __init__(self, host, port, auth, instance, metric_types, verbose, llen_keys):
self.host = host
self.port = port
self.auth = auth
self.instance = instance
self.metric_types = metric_types
self.verbose = verbose
self.llen_keys = llen_keys
def fetch_info(self, client):
"""Request info from the Redis server"""
self.log_verbose("Sending info command")
client.send("info")
try:
data = client.read_response()
except RedisError as e:
collectd.error("redis_info plugin: Error response from %s:%d - %r" % (self.host, self.port, e))
return None
self.log_verbose("Received data: %s" % data)
linesep = "\r\n" if "\r\n" in data else "\n"
info_dict = self.parse_info(data.split(linesep))
return info_dict
def parse_info(self, info_lines):
"""Parse info response from Redis"""
info = {}
for line in info_lines:
if not line or line.startswith("#"):
continue
if ":" not in line:
collectd.warning("redis_info plugin: Bad format for info line: %s" % line)
continue
key, val = line.split(":", 1)
# Handle multi-value keys (for dbs and slaves).
# db lines look like "db0:keys=10,expire=0"
# slave lines look like
# "slave0:ip=192.168.0.181,port=6379,
# state=online,offset=1650991674247,lag=1"
if "," in val:
split_val = val.split(",")
for sub_val in split_val:
k, _, v = sub_val.rpartition("=")
sub_key = "{0}_{1}".format(key, k)
info[sub_key] = v
else:
info[key] = val
# compatibility with pre-2.6 redis (used changes_since_last_save)
info["changes_since_last_save"] = info.get("changes_since_last_save", info.get("rdb_changes_since_last_save"))
return info
def dispatch_info(self, client):
info = self.fetch_info(client)
if not info:
collectd.error("redis plugin: No info received")
return
for keyTuple, val in self.metric_types.items():
key, mtype = keyTuple
if key == "total_connections_received" and mtype == "counter":
self.dispatch_value(info["total_connections_received"], "counter", type_instance="connections_received")
elif key == "total_commands_processed" and mtype == "counter":
self.dispatch_value(info["total_commands_processed"], "counter", type_instance="commands_processed")
else:
try:
self.dispatch_value(info[key], mtype, type_instance=key)
except (KeyError, TypeError):
collectd.error("Metric %s not found in Redis INFO output" % key)
continue
def dispatch_list_lengths(self, client):
"""
For each llen_key specified in the config file,
grab the length of that key from the corresponding
database index.
"""
key_dict = {}
for db, patterns in list(self.llen_keys.items()):
client.send("select %d" % db)
try:
resp = client.read_response()
except RedisError as e:
collectd.error("Could not select Redis db %s: %s" % (db, e))
continue
for pattern in patterns:
keys = []
# If there is a glob, get every key matching it
if "*" in pattern:
client.send("KEYS %s" % pattern)
keys = client.read_response()
else:
keys = [pattern]
for key in keys:
self.fetch_and_dispatch_llen_for_key(client, key, db)
def fetch_and_dispatch_llen_for_key(self, client, key, db):
client.send("llen %s" % key)
try:
val = client.read_response()
except RedisError as e:
collectd.warning("redis_info plugin: could not get length of key %s in db %s: %s" % (key, db, e))
return
dimensions = {"key_name": key, "db_index": db}
self.dispatch_value(val, "gauge", type_instance="key_llen", dimensions=dimensions)
def dispatch_value(self, value, type, plugin_instance=None, type_instance=None, dimensions={}):
"""Read a key from info response data and dispatch a value"""
try:
value = int(value)
except ValueError:
try:
value = float(value)
except ValueError:
if type_instance == "master_link_status":
if value == "up":
value = 1
else:
value = 0
else:
collectd.warning("redis_info plugin: could not cast value %s for instance %s " % (value, type_instance))
return
self.log_verbose("Sending value: %s=%s (%s)" % (type_instance, value, dimensions))
val = collectd.Values(plugin="redis_info")
val.type = type
val.type_instance = type_instance
val.values = [value]
plugin_instance = self.instance
if plugin_instance is None:
plugin_instance = "{host}:{port}".format(host=self.host, port=self.port)
val.plugin_instance = "{0}{1}".format(plugin_instance, _format_dimensions(dimensions))
# With some versions of CollectD, a dummy metadata map must be added
# to each value for it to be correctly serialized to JSON by the
# write_http plugin. See
# https://github.com/collectd/collectd/issues/716
val.meta = {"0": True}
val.dispatch()
def read_callback(self):
try:
self.get_metrics()
except socket.error as e:
collectd.error("redis_info plugin: Error connecting to %s:%d - %r" % (self.host, self.port, e))
return
except RedisError as e:
collectd.error("redis_info plugin: Error getting metrics from %s:%d - %r" % (self.host, self.port, e))
return
def get_metrics(self):
with RedisClient(self.host, self.port, self.auth) as client:
self.log_verbose("Connected to Redis at %s:%s" % (self.host, self.port))
self.dispatch_info(client)
self.dispatch_list_lengths(client)
def log_verbose(self, msg):
if not self.verbose:
return
collectd.info("redis plugin [verbose]: %s" % msg)
def configure_callback(conf):
"""Receive configuration block"""
host = None
port = None
auth = None
instance = None
llen_keys = {}
metric_types = {}
verbose = False
for node in conf.children:
key = node.key.lower()
val = node.values[0]
searchObj = re.search(r"redis_(.*)$", key, re.M | re.I)
if key == "host":
host = val
elif key == "port":
port = int(val)
elif key == "auth":
auth = val
elif key == "verbose":
verbose = node.values[0]
elif key == "instance":
instance = val
elif key == "sendlistlength":
if (len(node.values)) == 2:
llen_keys.setdefault(int(node.values[0]), []).append(node.values[1])
else:
collectd.warning(
"redis_info plugin: monitoring length of keys requires both \
database index and key value"
)
elif searchObj:
metric_types[searchObj.group(1), val] = True
else:
collectd.warning("redis_info plugin: Unknown config key: %s." % key)
continue
if verbose:
collectd.info(
"Configured with host=%s, port=%s, instance name=%s, using_auth=%s, llen_keys=%s"
% (host, port, instance, (auth is not None), llen_keys)
)
collector = RedisCollector(
**{
"host": host,
"port": port,
"auth": auth,
"instance": instance,
"metric_types": metric_types,
"verbose": verbose,
"llen_keys": llen_keys,
}
)
collectd.register_read(collector.read_callback, name="%s:%s:%s" % (host, port, instance))
def _format_dimensions(dimensions):
"""
Formats a dictionary of dimensions to a format that enables them to be
specified as key, value pairs in plugin_instance to signalfx. E.g.
>>> dimensions = {'a': 'foo', 'b': 'bar'}
>>> _format_dimensions(dimensions)
"[a=foo,b=bar]"
Args:
dimensions (dict): Mapping of {dimension_name: value, ...}
Returns:
str: Comma-separated list of dimensions
"""
if not dimensions:
return ""
dim_pairs = ["%s=%s" % (k, v) for k, v in dimensions.items()]
return "[%s]" % (",".join(dim_pairs))
# register callbacks
collectd.register_config(configure_callback)