removed separator between prefix and the rest of the key
authorSebastian Pfahl <eryx@gmx.net>
Mon, 15 Jun 2015 14:07:57 +0000 (14:07 +0000)
committerSebastian Pfahl <eryx@gmx.net>
Tue, 23 Jun 2015 11:20:58 +0000 (11:20 +0000)
src/collectd.conf.pod
src/write_redis.c

index 874c16c..ab3bbf8 100644 (file)
@@ -7491,7 +7491,7 @@ Synopsis:
 Values are submitted to I<Sorted Sets>, using the metric name as the key, and
 the timestamp as the score. Retrieving a date range can then be done using the
 C<ZRANGEBYSCORE> I<Redis> command. Additionnally, all the identifiers of these
-I<Sorted Sets> are kept in a I<Set> called C<collectd/values> or C<Prefix/collectd/values> if a Prefix was specified and can be
+I<Sorted Sets> are kept in a I<Set> called C<collectd/values> or C<Prefix/values> if a Prefix was specified and can be
 retrieved using the C<SMEMBERS> I<Redis> command. See
 L<http://redis.io/commands#sorted_set> and L<http://redis.io/commands#set> for
 details.
index 1bd9b20..dfa031c 100644 (file)
@@ -72,7 +72,7 @@ static int wr_write (const data_set_t *ds, /* {{{ */
     ssnprintf (key, sizeof (key), "collectd/%s", ident);
   }
   else {
-    ssnprintf (key, sizeof (key), "%s/collectd/%s", node->prefix, ident);
+    ssnprintf (key, sizeof (key), "%s/%s", node->prefix, ident);
   }
   ssnprintf (time, sizeof (time), "%.9f", CDTIME_T_TO_DOUBLE(vl->time));