X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_redis.c;h=909f51d51aa23ff396da9c259430618efd45043b;hb=d561993fd1bfb93df203484c4c225aca8b45f041;hp=dfa031c02218d59aef1b387a4c2f37af3d973961;hpb=a3b8297ca4e9b3f5e3652a347333526546306041;p=collectd.git diff --git a/src/write_redis.c b/src/write_redis.c index dfa031c0..909f51d5 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]; @@ -68,12 +72,9 @@ static int wr_write (const data_set_t *ds, /* {{{ */ status = FORMAT_VL (ident, sizeof (ident), vl); if (status != 0) return (status); - if (node->prefix == NULL) { - ssnprintf (key, sizeof (key), "collectd/%s", ident); - } - else { - ssnprintf (key, sizeof (key), "%s/%s", node->prefix, 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)); @@ -112,7 +113,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) { @@ -140,7 +144,9 @@ static int wr_write (const data_set_t *ds, /* {{{ */ if (rr==NULL) WARNING("ZADD command error. key:%s message:%s", key, node->conn->errstr); - rr = redisCommand (node->conn, "SADD collectd/values %s", ident); + 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);