2 * collectd - src/redis.c, based on src/memcached.c
3 * Copyright (C) 2010 Andrés J. Díaz <ajdiaz@connectical.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Andrés J. Díaz <ajdiaz@connectical.com>
29 #include <hiredis/hiredis.h>
32 # define HOST_NAME_MAX _POSIX_HOST_NAME_MAX
35 #define REDIS_DEF_HOST "localhost"
36 #define REDIS_DEF_PASSWD ""
37 #define REDIS_DEF_PORT 6379
38 #define REDIS_DEF_TIMEOUT 2000
39 #define MAX_REDIS_NODE_NAME 64
40 #define MAX_REDIS_PASSWD_LENGTH 512
41 #define MAX_REDIS_VAL_SIZE 256
42 #define MAX_REDIS_QUERY 2048
44 /* Redis plugin configuration example:
57 typedef struct redis_query_s redis_query_t;
60 char query[MAX_REDIS_QUERY];
61 char type[DATA_MAX_NAME_LEN];
62 char instance[DATA_MAX_NAME_LEN];
67 typedef struct redis_node_s redis_node_t;
70 char name[MAX_REDIS_NODE_NAME];
71 char host[HOST_NAME_MAX];
72 char passwd[MAX_REDIS_PASSWD_LENGTH];
74 struct timeval timeout;
75 redis_query_t *queries;
80 static redis_node_t *nodes_head = NULL;
82 static int redis_node_add (const redis_node_t *rn) /* {{{ */
84 redis_node_t *rn_copy;
87 /* Check for duplicates first */
88 for (rn_ptr = nodes_head; rn_ptr != NULL; rn_ptr = rn_ptr->next)
89 if (strcmp (rn->name, rn_ptr->name) == 0)
94 ERROR ("redis plugin: A node with the name `%s' already exists.",
99 rn_copy = malloc (sizeof (*rn_copy));
102 ERROR ("redis plugin: malloc failed adding redis_node to the tree.");
106 memcpy (rn_copy, rn, sizeof (*rn_copy));
107 rn_copy->next = NULL;
109 DEBUG ("redis plugin: Adding node \"%s\".", rn->name);
111 if (nodes_head == NULL)
112 nodes_head = rn_copy;
116 while (rn_ptr->next != NULL)
117 rn_ptr = rn_ptr->next;
118 rn_ptr->next = rn_copy;
124 static redis_query_t *redis_config_query (oconfig_item_t *ci) /* {{{ */
129 rq = calloc(1, sizeof(*rq));
131 ERROR("redis plugin: calloc failed adding redis_query.");
134 status = cf_util_get_string_buffer(ci, rq->query, sizeof(rq->query));
139 * Default to a gauge type.
141 (void)strncpy(rq->type, "gauge", sizeof(rq->type));
142 (void)sstrncpy(rq->instance, rq->query, sizeof(rq->instance));
143 replace_special(rq->instance, sizeof(rq->instance));
145 for (int i = 0; i < ci->children_num; i++) {
146 oconfig_item_t *option = ci->children + i;
148 if (strcasecmp("Type", option->key) == 0) {
149 status = cf_util_get_string_buffer(option, rq->type, sizeof(rq->type));
150 } else if (strcasecmp("Instance", option->key) == 0) {
151 status = cf_util_get_string_buffer(option, rq->instance, sizeof(rq->instance));
153 WARNING("redis plugin: unknown configuration option: %s", option->key);
165 static int redis_config_node (oconfig_item_t *ci) /* {{{ */
172 .port = REDIS_DEF_PORT,
173 .timeout.tv_usec = REDIS_DEF_TIMEOUT
176 sstrncpy (rn.host, REDIS_DEF_HOST, sizeof (rn.host));
178 status = cf_util_get_string_buffer (ci, rn.name, sizeof (rn.name));
182 for (int i = 0; i < ci->children_num; i++)
184 oconfig_item_t *option = ci->children + i;
186 if (strcasecmp ("Host", option->key) == 0)
187 status = cf_util_get_string_buffer (option, rn.host, sizeof (rn.host));
188 else if (strcasecmp ("Port", option->key) == 0)
190 status = cf_util_get_port_number (option);
197 else if (strcasecmp ("Query", option->key) == 0)
199 rq = redis_config_query(option);
203 rq->next = rn.queries;
207 else if (strcasecmp ("Timeout", option->key) == 0)
209 status = cf_util_get_int (option, &timeout);
210 if (status == 0) rn.timeout.tv_usec = timeout;
212 else if (strcasecmp ("Password", option->key) == 0)
213 status = cf_util_get_string_buffer (option, rn.passwd, sizeof (rn.passwd));
215 WARNING ("redis plugin: Option `%s' not allowed inside a `Node' "
216 "block. I'll ignore this option.", option->key);
225 return (redis_node_add (&rn));
226 } /* }}} int redis_config_node */
228 static int redis_config (oconfig_item_t *ci) /* {{{ */
230 for (int i = 0; i < ci->children_num; i++)
232 oconfig_item_t *option = ci->children + i;
234 if (strcasecmp ("Node", option->key) == 0)
235 redis_config_node (option);
237 WARNING ("redis plugin: Option `%s' not allowed in redis"
238 " configuration. It will be ignored.", option->key);
241 if (nodes_head == NULL)
243 ERROR ("redis plugin: No valid node configuration could be found.");
250 __attribute__ ((nonnull(2)))
251 static void redis_submit (char *plugin_instance,
252 const char *type, const char *type_instance,
253 value_t value) /* {{{ */
255 value_list_t vl = VALUE_LIST_INIT;
259 sstrncpy (vl.plugin, "redis", sizeof (vl.plugin));
260 if (plugin_instance != NULL)
261 sstrncpy (vl.plugin_instance, plugin_instance,
262 sizeof (vl.plugin_instance));
263 sstrncpy (vl.type, type, sizeof (vl.type));
264 if (type_instance != NULL)
265 sstrncpy (vl.type_instance, type_instance,
266 sizeof (vl.type_instance));
268 plugin_dispatch_values (&vl);
271 static int redis_init (void) /* {{{ */
275 .host = REDIS_DEF_HOST,
276 .port = REDIS_DEF_PORT,
278 .timeout.tv_usec = REDIS_DEF_TIMEOUT,
282 if (nodes_head == NULL)
283 redis_node_add (&rn);
286 } /* }}} int redis_init */
288 static int redis_handle_info (char *node, char const *info_line, char const *type, char const *type_instance, char const *field_name, int ds_type) /* {{{ */
290 char *str = strstr (info_line, field_name);
291 static char buf[MAX_REDIS_VAL_SIZE];
297 str += strlen (field_name) + 1; /* also skip the ':' */
298 for(i=0;(*str && (isdigit((unsigned char)*str) || *str == '.'));i++,str++)
302 if(parse_value (buf, &val, ds_type) == -1)
304 WARNING ("redis plugin: Unable to parse field `%s'.", field_name);
308 redis_submit (node, type, type_instance, val);
313 } /* }}} int redis_handle_info */
315 static int redis_handle_query (redisContext *rh, redis_node_t *rn, redis_query_t *rq) /* {{{ */
318 const data_set_t *ds;
321 ds = plugin_get_ds (rq->type);
323 ERROR ("redis plugin: DataSet `%s' not defined.", rq->type);
327 if (ds->ds_num != 1) {
328 ERROR ("redis plugin: DS `%s' has too many types.", rq->type);
332 if ((rr = redisCommand(rh, rq->query)) == NULL) {
333 WARNING("redis plugin: unable to carry out query `%s'.", rq->query);
338 case REDIS_REPLY_INTEGER:
339 switch (ds->ds[0].type) {
340 case DS_TYPE_COUNTER:
341 val.counter = (counter_t)rr->integer;
344 val.gauge = (gauge_t)rr->integer;
347 val.gauge = (derive_t)rr->integer;
349 case DS_TYPE_ABSOLUTE:
350 val.gauge = (absolute_t)rr->integer;
354 case REDIS_REPLY_STRING:
355 if (parse_value (rr->str, &val, ds->ds[0].type) == -1) {
356 WARNING("redis plugin: Unable to parse field `%s'.", rq->type);
357 freeReplyObject (rr);
362 WARNING("redis plugin: Cannot coerce redis type.");
367 redis_submit(rn->name, rq->type, (strlen(rq->instance) >0)?rq->instance:NULL, val);
368 freeReplyObject (rr);
370 } /* }}} int redis_handle_query */
372 static int redis_read (void) /* {{{ */
374 for (redis_node_t *rn = nodes_head; rn != NULL; rn = rn->next)
379 DEBUG ("redis plugin: querying info from node `%s' (%s:%d).", rn->name, rn->host, rn->port);
381 rh = redisConnectWithTimeout ((char *)rn->host, rn->port, rn->timeout);
384 ERROR ("redis plugin: unable to connect to node `%s' (%s:%d).", rn->name, rn->host, rn->port);
388 if (strlen (rn->passwd) > 0)
390 DEBUG ("redis plugin: authenticating node `%s' passwd(%s).", rn->name, rn->passwd);
392 if ((rr = redisCommand (rh, "AUTH %s", rn->passwd)) == NULL)
394 WARNING ("redis plugin: unable to authenticate on node `%s'.", rn->name);
398 if (rr->type != REDIS_REPLY_STATUS)
400 WARNING ("redis plugin: invalid authentication on node `%s'.", rn->name);
404 freeReplyObject (rr);
407 if ((rr = redisCommand(rh, "INFO")) == NULL)
409 WARNING ("redis plugin: unable to get info from node `%s'.", rn->name);
413 redis_handle_info (rn->name, rr->str, "uptime", NULL, "uptime_in_seconds", DS_TYPE_GAUGE);
414 redis_handle_info (rn->name, rr->str, "current_connections", "clients", "connected_clients", DS_TYPE_GAUGE);
415 redis_handle_info (rn->name, rr->str, "blocked_clients", NULL, "blocked_clients", DS_TYPE_GAUGE);
416 redis_handle_info (rn->name, rr->str, "memory", NULL, "used_memory", DS_TYPE_GAUGE);
417 redis_handle_info (rn->name, rr->str, "memory_lua", NULL, "used_memory_lua", DS_TYPE_GAUGE);
418 /* changes_since_last_save: Deprecated in redis version 2.6 and above */
419 redis_handle_info (rn->name, rr->str, "volatile_changes", NULL, "changes_since_last_save", DS_TYPE_GAUGE);
420 redis_handle_info (rn->name, rr->str, "total_connections", NULL, "total_connections_received", DS_TYPE_DERIVE);
421 redis_handle_info (rn->name, rr->str, "total_operations", NULL, "total_commands_processed", DS_TYPE_DERIVE);
422 redis_handle_info (rn->name, rr->str, "operations_per_second", NULL, "instantaneous_ops_per_sec", DS_TYPE_GAUGE);
423 redis_handle_info (rn->name, rr->str, "expired_keys", NULL, "expired_keys", DS_TYPE_DERIVE);
424 redis_handle_info (rn->name, rr->str, "evicted_keys", NULL, "evicted_keys", DS_TYPE_DERIVE);
425 redis_handle_info (rn->name, rr->str, "pubsub", "channels", "pubsub_channels", DS_TYPE_GAUGE);
426 redis_handle_info (rn->name, rr->str, "pubsub", "patterns", "pubsub_patterns", DS_TYPE_GAUGE);
427 redis_handle_info (rn->name, rr->str, "current_connections", "slaves", "connected_slaves", DS_TYPE_GAUGE);
428 redis_handle_info (rn->name, rr->str, "cache_result", "hits", "keyspace_hits", DS_TYPE_DERIVE);
429 redis_handle_info (rn->name, rr->str, "cache_result", "misses", "keyspace_misses", DS_TYPE_DERIVE);
430 redis_handle_info (rn->name, rr->str, "total_bytes", "input", "total_net_input_bytes", DS_TYPE_DERIVE);
431 redis_handle_info (rn->name, rr->str, "total_bytes", "output", "total_net_output_bytes", DS_TYPE_DERIVE);
433 for (redis_query_t *rq = rn->queries; rq != NULL; rq = rq->next)
434 redis_handle_query(rh, rn, rq);
438 freeReplyObject (rr);
446 void module_register (void) /* {{{ */
448 plugin_register_complex_config ("redis", redis_config);
449 plugin_register_init ("redis", redis_init);
450 plugin_register_read ("redis", redis_read);
451 /* TODO: plugin_register_write: one redis list per value id with
456 /* vim: set sw=2 sts=2 et fdm=marker : */