summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1b82884)
raw | patch | inline | side by side (parent: 1b82884)
author | Pierre-Yves Ritschard <pyr@spootnik.org> | |
Thu, 20 Nov 2014 12:24:35 +0000 (13:24 +0100) | ||
committer | Pierre-Yves Ritschard <pyr@spootnik.org> | |
Thu, 20 Nov 2014 12:24:35 +0000 (13:24 +0100) |
This reorders arguments a bit:
- The query is expected to be the block argument
- The type instance is inferred from the query if unsupplied
- The type will default to gauge if not supplied
- The query is expected to be the block argument
- The type instance is inferred from the query if unsupplied
- The type will default to gauge if not supplied
src/redis.c | patch | blob | history |
diff --git a/src/redis.c b/src/redis.c
index 2ce1f96a312f87c79277f205c51d61a1ef8111a1..7864ead07c01c1edf079cecfb9c79474470cb277 100644 (file)
--- a/src/redis.c
+++ b/src/redis.c
ERROR("redis plugin: calloca failed adding redis_query.");
return NULL;
}
- status = cf_util_get_string_buffer(ci, rq->type, sizeof(rq->type));
+ status = cf_util_get_string_buffer(ci, rq->query, sizeof(rq->query));
if (status != 0)
goto err;
+ /*
+ * Default to a gauge type.
+ */
+ (void)strncpy(rq->type, "gauge", sizeof(rq->type));
+ (void)strncpy(rq->instance, rq->query, sizeof(rq->instance));
+ replace_special(rq->instance, sizeof(rq->instance));
+
for (i = 0; i < ci->children_num; i++) {
oconfig_item_t *option = ci->children + i;
- if (strcasecmp("Exec", option->key) == 0) {
- status = cf_util_get_string_buffer(option, rq->query, sizeof(rq->query));
+ if (strcasecmp("Type", option->key) == 0) {
+ status = cf_util_get_string_buffer(option, rq->type, sizeof(rq->type));
} else if (strcasecmp("Instance", option->key) == 0) {
status = cf_util_get_string_buffer(option, rq->instance, sizeof(rq->instance));
+ } else {
+ WARNING("redis plugin: unknown configuration option: %s", option->key);
+ status = -1;
}
if (status != 0)
goto err;
}
- if (strlen(rq->query) == 0) {
- WARNING("redis plugin: invalid query definition for: %s", rq->type);
- goto err;
- }
return rq;
err:
free(rq);