X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fredis.c;h=0814126cffab4a466e69b2993bfd519d0bbf7a7f;hb=edd9af8a874ebc9f2a7f02846807229a648917db;hp=3f78bc3d5739894236730fe600df5b42b663fee2;hpb=9688fc1b640c0c50f53e47487fee8dc2ce31dd60;p=collectd.git diff --git a/src/redis.c b/src/redis.c index 3f78bc3d..0814126c 100644 --- a/src/redis.c +++ b/src/redis.c @@ -25,7 +25,6 @@ #include "plugin.h" #include "configfile.h" -#include #include #include @@ -130,7 +129,7 @@ static redis_query_t *redis_config_query (oconfig_item_t *ci) /* {{{ */ rq = calloc(1, sizeof(*rq)); if (rq == NULL) { - ERROR("redis plugin: calloca failed adding redis_query."); + ERROR("redis plugin: calloc failed adding redis_query."); return NULL; } status = cf_util_get_string_buffer(ci, rq->query, sizeof(rq->query)); @@ -304,7 +303,7 @@ static int redis_handle_info (char *node, char const *info_line, char const *typ int i; str += strlen (field_name) + 1; /* also skip the ':' */ - for(i=0;(*str && (isdigit(*str) || *str == '.'));i++,str++) + for(i=0;(*str && (isdigit((unsigned char)*str) || *str == '.'));i++,str++) buf[i] = *str; buf[i] ='\0'; @@ -399,25 +398,27 @@ static int redis_read (void) /* {{{ */ if (strlen (rn->passwd) > 0) { - DEBUG ("redis plugin: authenticanting node `%s' passwd(%s).", rn->name, rn->passwd); - rr = redisCommand (rh, "AUTH %s", rn->passwd); + DEBUG ("redis plugin: authenticating node `%s' passwd(%s).", rn->name, rn->passwd); - if (rr == NULL || rr->type != REDIS_REPLY_STATUS) + if ((rr = redisCommand (rh, "AUTH %s", rn->passwd)) == NULL) { WARNING ("redis plugin: unable to authenticate on node `%s'.", rn->name); - if (rr != NULL) - freeReplyObject (rr); + goto redis_fail; + } - redisFree (rh); - continue; + if (rr->type != REDIS_REPLY_STATUS) + { + WARNING ("redis plugin: invalid authentication on node `%s'.", rn->name); + goto redis_fail; } + + freeReplyObject (rr); } if ((rr = redisCommand(rh, "INFO")) == NULL) { - WARNING ("redis plugin: unable to connect to node `%s'.", rn->name); - redisFree (rh); - continue; + WARNING ("redis plugin: unable to get info from node `%s'.", rn->name); + goto redis_fail; } redis_handle_info (rn->name, rr->str, "uptime", NULL, "uptime_in_seconds", DS_TYPE_GAUGE); @@ -430,15 +431,21 @@ static int redis_read (void) /* {{{ */ redis_handle_info (rn->name, rr->str, "total_connections", NULL, "total_connections_received", DS_TYPE_DERIVE); redis_handle_info (rn->name, rr->str, "total_operations", NULL, "total_commands_processed", DS_TYPE_DERIVE); redis_handle_info (rn->name, rr->str, "expired_keys", NULL, "expired_keys", DS_TYPE_DERIVE); + redis_handle_info (rn->name, rr->str, "evicted_keys", NULL, "evicted_keys", DS_TYPE_DERIVE); redis_handle_info (rn->name, rr->str, "pubsub", "channels", "pubsub_channels", DS_TYPE_GAUGE); redis_handle_info (rn->name, rr->str, "pubsub", "patterns", "pubsub_patterns", DS_TYPE_GAUGE); redis_handle_info (rn->name, rr->str, "current_connections", "slaves", "connected_slaves", DS_TYPE_GAUGE); - - freeReplyObject (rr); + redis_handle_info (rn->name, rr->str, "cache_result", "hits", "keyspace_hits", DS_TYPE_DERIVE); + redis_handle_info (rn->name, rr->str, "cache_result", "misses", "keyspace_misses", DS_TYPE_DERIVE); + redis_handle_info (rn->name, rr->str, "total_bytes", "input", "total_net_input_bytes", DS_TYPE_DERIVE); + redis_handle_info (rn->name, rr->str, "total_bytes", "output", "total_net_output_bytes", DS_TYPE_DERIVE); for (rq = rn->queries; rq != NULL; rq = rq->next) redis_handle_query(rh, rn, rq); +redis_fail: + if (rr != NULL) + freeReplyObject (rr); redisFree (rh); }