Added documentation for StatsD module per added functionality in issue #403.
authorDenis Boulas <dene14@gmail.com>
Tue, 23 Sep 2014 08:08:25 +0000 (11:08 +0300)
committerMarc Fournier <marc.fournier@camptocamp.com>
Tue, 23 Sep 2014 10:24:57 +0000 (12:24 +0200)
src/collectd.conf.in
src/collectd.conf.pod

index e483d44..ec2d51c 100644 (file)
 #  DeleteGauges   false
 #  DeleteSets     false
 #  TimerPercentile 90.0
+#  TimerLower     false
+#  TimerUpper     false
+#  TimerSum       false
+#  TimerCount     false
 #</Plugin>
 
 #<Plugin "swap">
index 77d7e2c..987ac88 100644 (file)
@@ -5334,6 +5334,30 @@ often done in I<Service Level Agreements> (SLAs).
 
 If not specified, no percentile is calculated / dispatched.
 
+=item B<TimerLower> B<false>|B<true>
+
+Calculates and dispatch the lowest value for the metric in an inteval.
+
+If set to B<False>, no lowest value is calculated / dispatched.
+
+=item B<TimerUpper> B<false>|B<true>
+
+Calculates and dispatch the highest value for the metric in an inteval.
+
+If set to B<False>, no highest value is calculated / dispatched.
+
+=item B<TimerSum> B<false>|B<true>
+
+Calculates and dispatch a sum for all the values for the metric in an inteval.
+
+If set to B<False>, no sum value is calculated / dispatched.
+
+=item B<TimerCount> B<false>|B<true>
+
+Calculates and dispatch a count of all the values for the metric been sent in an inteval.
+
+If set to B<False>, no count value is calculated / dispatched.
+
 =back
 
 =head2 Plugin C<swap>