X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_redis.c;h=22e30abb3833687f1a423810f19c1c4860d0efd6;hb=13e2b6e5a5ff8dbb20e6e5e06058b3372d139b94;hp=40f9074b0630be90fcf18bbfcec7dcc434d42b18;hpb=0beb06563c5681975fd4f743c547e15f4facb29f;p=collectd.git diff --git a/src/write_redis.c b/src/write_redis.c index 40f9074b..22e30abb 100644 --- a/src/write_redis.c +++ b/src/write_redis.c @@ -113,22 +113,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);