X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_redis.c;h=7ba476c92fa2164322c4d3ad5ba73b64ea67e322;hb=6bf2e82bf5049af097beae4a8b7f086466520839;hp=22e30abb3833687f1a423810f19c1c4860d0efd6;hpb=741e018fff531bfe914781489d9b2c7a002f2bc7;p=collectd.git diff --git a/src/write_redis.c b/src/write_redis.c index 22e30abb..7ba476c9 100644 --- a/src/write_redis.c +++ b/src/write_redis.c @@ -1,6 +1,6 @@ /** * collectd - src/write_redis.c - * Copyright (C) 2010 Florian Forster + * Copyright (C) 2010-2015 Florian Forster * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -33,6 +33,10 @@ #include #include +#ifndef REDIS_DEFAULT_PREFIX +# define REDIS_DEFAULT_PREFIX "collectd/" +#endif + struct wr_node_s { char name[DATA_MAX_NAME_LEN]; @@ -40,6 +44,8 @@ struct wr_node_s char *host; int port; struct timeval timeout; + char *prefix; + int database; redisContext *conn; pthread_mutex_t lock; @@ -67,7 +73,9 @@ static int wr_write (const data_set_t *ds, /* {{{ */ status = FORMAT_VL (ident, sizeof (ident), vl); if (status != 0) return (status); - ssnprintf (key, sizeof (key), "collectd/%s", ident); + ssnprintf (key, sizeof (key), "%s%s", + (node->prefix != NULL) ? node->prefix : REDIS_DEFAULT_PREFIX, + ident); ssnprintf (time, sizeof (time), "%.9f", CDTIME_T_TO_DOUBLE(vl->time)); memset (value, 0, sizeof (value)); @@ -106,7 +114,10 @@ static int wr_write (const data_set_t *ds, /* {{{ */ #undef APPEND + status = format_values (value_ptr, value_size, ds, vl, /* store rates = */ 0); pthread_mutex_lock (&node->lock); + if (status != 0) + return (status); if (node->conn == NULL) { @@ -128,15 +139,30 @@ static int wr_write (const data_set_t *ds, /* {{{ */ pthread_mutex_unlock (&node->lock); return (-1); } + + rr = redisCommand(node->conn, "SELECT %d", node->database); + if (rr == NULL) + WARNING("SELECT command error. database:%d message:%s", node->database, node->conn->errstr); + else + freeReplyObject (rr); } rr = redisCommand (node->conn, "ZADD %s %s %s", key, time, value); - if (rr==NULL) + if (rr == NULL) WARNING("ZADD command error. key:%s message:%s", key, node->conn->errstr); - - rr = redisCommand (node->conn, "SADD collectd/values %s", ident); + else + freeReplyObject (rr); + + /* TODO(octo): This is more overhead than necessary. Use the cache and + * metadata to determine if it is a new metric and call SADD only once for + * each metric. */ + rr = redisCommand (node->conn, "SADD %svalues %s", + (node->prefix != NULL) ? node->prefix : REDIS_DEFAULT_PREFIX, + ident); if (rr==NULL) WARNING("SADD command error. ident:%s message:%s", ident, node->conn->errstr); + else + freeReplyObject (rr); pthread_mutex_unlock (&node->lock); @@ -176,6 +202,8 @@ static int wr_config_node (oconfig_item_t *ci) /* {{{ */ node->timeout.tv_sec = 0; node->timeout.tv_usec = 1000; node->conn = NULL; + node->prefix = NULL; + node->database = 0; pthread_mutex_init (&node->lock, /* attr = */ NULL); status = cf_util_get_string_buffer (ci, node->name, sizeof (node->name)); @@ -204,6 +232,12 @@ static int wr_config_node (oconfig_item_t *ci) /* {{{ */ status = cf_util_get_int (child, &timeout); if (status == 0) node->timeout.tv_usec = timeout; } + else if (strcasecmp ("Prefix", child->key) == 0) { + status = cf_util_get_string (child, &node->prefix); + } + else if (strcasecmp ("Database", child->key) == 0) { + status = cf_util_get_int (child, &node->database); + } else WARNING ("write_redis plugin: Ignoring unknown config option \"%s\".", child->key);