X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_redis.c;h=dfa031c02218d59aef1b387a4c2f37af3d973961;hb=a3b8297ca4e9b3f5e3652a347333526546306041;hp=b4c5e212e300e83a5d5de5d060f02c0940d9b70c;hpb=a7eecf6018a684dcf8323d4a41a7e704a5d57f02;p=collectd.git diff --git a/src/write_redis.c b/src/write_redis.c index b4c5e212..dfa031c0 100644 --- a/src/write_redis.c +++ b/src/write_redis.c @@ -40,6 +40,7 @@ struct wr_node_s char *host; int port; struct timeval timeout; + char *prefix; redisContext *conn; pthread_mutex_t lock; @@ -67,7 +68,12 @@ 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); + if (node->prefix == NULL) { + ssnprintf (key, sizeof (key), "collectd/%s", ident); + } + else { + ssnprintf (key, sizeof (key), "%s/%s", node->prefix, ident); + } ssnprintf (time, sizeof (time), "%.9f", CDTIME_T_TO_DOUBLE(vl->time)); memset (value, 0, sizeof (value)); @@ -95,7 +101,7 @@ static int wr_write (const data_set_t *ds, /* {{{ */ 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) @@ -113,22 +119,30 @@ static int wr_write (const data_set_t *ds, /* {{{ */ 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); + WARNING("ZADD command error. key:%s message:%s", key, node->conn->errstr); 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); pthread_mutex_unlock (&node->lock); @@ -168,6 +182,7 @@ 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; pthread_mutex_init (&node->lock, /* attr = */ NULL); status = cf_util_get_string_buffer (ci, node->name, sizeof (node->name)); @@ -196,6 +211,9 @@ 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 WARNING ("write_redis plugin: Ignoring unknown config option \"%s\".", child->key);