write_graphite plugin: Enable "StoreRates" by default.
authorFlorian Forster <octo@collectd.org>
Mon, 20 Feb 2012 16:20:47 +0000 (17:20 +0100)
committerFlorian Forster <octo@collectd.org>
Mon, 20 Feb 2012 16:24:46 +0000 (17:24 +0100)
Change-Id: I814c45d035ce42de07815fecfe0b667080e2d900

src/collectd.conf.pod
src/write_graphite.c

index 6f79266..a3fe184 100644 (file)
@@ -4814,8 +4814,8 @@ underscore (C<_>).
 
 =item B<StoreRates> B<false>|B<true>
 
-If set to B<true>, convert counter values to rates. If set to B<false> (the
-default) counter values are stored as is, i.E<nbsp>e. as an increasing integer
+If set to B<true> (the default), convert counter values to rates. If set to
+B<false> counter values are stored as is, i.E<nbsp>e. as an increasing integer
 number.
 
 =item B<SeparateInstances> B<false>|B<true>
index e59572b..d6583a7 100644 (file)
@@ -621,6 +621,7 @@ static int wg_config_carbon (oconfig_item_t *ci)
     cb->prefix = NULL;
     cb->postfix = NULL;
     cb->escape_char = WG_DEFAULT_ESCAPE;
+    cb->store_rates = 1;
 
     pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);