X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_redis.c;h=2a6f9124aee0f9a66e3c6a004d8456442d7a067b;hb=a9b65b73fc54f48b6f3633efa1a6c89f78a148bf;hp=b47650d178149bdc2d3342d669afaf9c2cf94d4c;hpb=04b620afa8ff7c9f6565e57174fe5b9b9d462d61;p=collectd.git diff --git a/src/write_redis.c b/src/write_redis.c index b47650d1..2a6f9124 100644 --- a/src/write_redis.c +++ b/src/write_redis.c @@ -88,15 +88,14 @@ static int wr_write (const data_set_t *ds, /* {{{ */ } \ } while (0) - APPEND (time); - APPEND (":"); + APPEND ("%s:", time); for (i = 0; i < ds->ds_num; i++) { if (ds->ds[i].type == DS_TYPE_COUNTER) APPEND ("%llu", vl->values[i].counter); else if (ds->ds[i].type == DS_TYPE_GAUGE) - APPEND ("%g", vl->values[i].gauge); + APPEND (GAUGE_FORMAT, vl->values[i].gauge); else if (ds->ds[i].type == DS_TYPE_DERIVE) APPEND ("%"PRIi64, vl->values[i].derive); else if (ds->ds[i].type == DS_TYPE_ABSOLUTE) @@ -107,29 +106,47 @@ 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) { node->conn = redisConnectWithTimeout ((char *)node->host, node->port, node->timeout); if (node->conn == NULL) { - ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed.", + ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed: Unkown reason", (node->host != NULL) ? node->host : "localhost", (node->port != 0) ? node->port : 6379); pthread_mutex_unlock (&node->lock); return (-1); } + else if (node->conn->err) + { + ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed: %s", + (node->host != NULL) ? node->host : "localhost", + (node->port != 0) ? node->port : 6379, + node->conn->errstr); + pthread_mutex_unlock (&node->lock); + return (-1); + } } - assert (node->conn != NULL); rr = redisCommand (node->conn, "ZADD %s %s %s", key, time, value); - if (rr==NULL) - WARNING("ZADD command error. key:%s", key); - + if (rr == NULL) + WARNING("ZADD command error. key:%s message:%s", key, node->conn->errstr); + 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 collectd/values %s", ident); if (rr==NULL) - WARNING("SADD command error. ident:%s", ident); + WARNING("SADD command error. ident:%s message:%s", ident, node->conn->errstr); + else + freeReplyObject (rr); pthread_mutex_unlock (&node->lock);