From: Florian Forster Date: Thu, 25 Jun 2015 19:40:27 +0000 (+0200) Subject: Merge remote-tracking branch 'github/pr/1082' X-Git-Tag: collectd-5.6.0~672 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=b914b8bf2c6580fd78836399e0aaa851eb4883c5;hp=d1fc88e372d331f671422136143e4ab52ca9ef73;p=collectd.git Merge remote-tracking branch 'github/pr/1082' --- diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index 96efc73c..9412ed37 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -7494,13 +7494,14 @@ Synopsis: Host "localhost" Port "6379" Timeout 1000 + Prefix "examplePrefix" Values are submitted to I, using the metric name as the key, and the timestamp as the score. Retrieving a date range can then be done using the C I command. Additionnally, all the identifiers of these -I are kept in a I called C and can be +I are kept in a I called C or C if a Prefix was specified and can be retrieved using the C I command. See L and L for details. diff --git a/src/write_redis.c b/src/write_redis.c index 02663c66..24bcfc8c 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)); @@ -179,6 +185,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)); @@ -207,6 +214,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);