summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: db8b1cd)
raw | patch | inline | side by side (parent: db8b1cd)
author | Florian Forster <octo@collectd.org> | |
Wed, 12 Oct 2016 15:15:10 +0000 (17:15 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Sun, 27 Nov 2016 06:55:29 +0000 (07:55 +0100) |
src/collectd.conf.in | patch | blob | history | |
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.in b/src/collectd.conf.in
index 037371bca80d21084cb6e78f369a4e615f1fc2fb..1a6966939d8e3962c59c367a29b60c4a067122b9 100644 (file)
--- a/src/collectd.conf.in
+++ b/src/collectd.conf.in
# LatencyPercentile 70
# LatencyPercentile 95
# LatencyRateType "requests"
-# LatencyRate 0.001 0.100
-# LatencyRate 0.101 0.200
-# LatencyRate 0.201 0
+# LatencyRate 0 0.100
+# LatencyRate 0.100 0.200
+# LatencyRate 0.200 0
# </Match>
# </File>
#</Plugin>
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 74fb977e2019867ea27834fd2f7c45ca2a07ad55..1abca916735128c8e605b092b52bbe61a3b7c778 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
Different percentiles can be calculated by setting this option several times.
=item B<LatencyPercentileType> I<Type>
+
Sets the type used to dispatch B<LatencyPercentile> values.
=item B<LatencyRate> I<lower_latency> I<upper_latency>
Calculate and dispatch rate of latency values fall within requested interval.
-Interval is specified as [I<lower_latency>, I<upper_latency>] (including
-boundaries). Rate cannot be reported for 0.000 latency, so I<lower_latency>
-should be 0.001 or greater. When I<upper_latency> value is equal to 0 then
-interval is [lower, infinity).
+Both, I<lower_latency> and I<upper_latency> is a duration in seconds and can be
+a fractional number, such as B<0.5>. The settings specify the interval
+C<(I<lower_latency>, I<upper_latency>]>, i.e. the range I<excludes> the lower
+bound and I<includes> the upper bound. I<lower_latency> and I<upper_latency>
+can be zero, meaning no lower/upper bound.
Rates for different intervals can be calculated by setting this option several
times.
=item B<LatencyRateType> I<Type>
+
Sets the type used to dispatch B<LatencyRate> values.
=back