From: Florian Forster Date: Sun, 20 Nov 2016 21:53:34 +0000 (+0100) Subject: collectd.conf(5): Rename DSType from Latency to Distribution. X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=0288de1f23f1c56d4327055d1eef2866845bc4d4;p=collectd.git collectd.conf(5): Rename DSType from Latency to Distribution. --- diff --git a/src/collectd.conf.in b/src/collectd.conf.in index 4d1190ec..4165aeaf 100644 --- a/src/collectd.conf.in +++ b/src/collectd.conf.in @@ -1260,18 +1260,17 @@ # Instance "apache" # # Regex "^\\S+ \"([0-9.]+)\"" -# DSType "Latency" -# Type "response_time" -# #LatencyPercentileType "percentile" -# LatencyPercentile 5 -# LatencyPercentile 30 -# LatencyPercentile 50 -# LatencyPercentile 70 -# LatencyPercentile 95 -# LatencyRateType "requests" -# LatencyRate 0 0.100 -# LatencyRate 0.100 0.200 -# LatencyRate 0.200 0 +# DSType "Distribution" +# Type "latency" +# Percentile 80 # -> latency-foo-80 +# Percentile 95 # -> latency-foo-95 +# Percentile 99 # -> latency-foo-99 +# Bucket 0 0.1 # -> bucket-latency-foo-0_0.1 +# Bucket 0.1 0.2 # -> bucket-latency-foo-0.1_0.2 +# Bucket 0.2 0.5 # -> bucket-latency-foo-0.2_0.5 +# Bucket 0.5 1.0 # -> bucket-latency-foo-0.5_1 +# Bucket 1.0 2.0 # -> bucket-latency-foo-1_2 +# Bucket 2.0 0 # -> bucket-latency-foo-2_inf # # # diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index d9c4aac2..c54ec317 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -6957,6 +6957,20 @@ user using (extended) regular expressions, as described in L. Type "counter" Instance "local_user" + + Regex "l=([0-9]*\\.[0-9]*)" + DSType "Distribution" + Type "latency" + Instance "foo" + Percentile 80 # -> latency-foo-80 + Percentile 95 # -> latency-foo-95 + Percentile 99 # -> latency-foo-99 + Bucket 0 0.1 # -> bucket-latency-foo-0_0.1 + Bucket 0.1 0.2 # -> bucket-latency-foo-0.1_0.2 + Bucket 0.2 0.5 # -> bucket-latency-foo-0.2_0.5 + Bucket 0.5 1.0 # -> bucket-latency-foo-0.5_1 + Bucket 1.0 2.0 # -> bucket-latency-foo-1_2 + Bucket 2.0 0 # -> bucket-latency-foo-2_inf @@ -7048,13 +7062,17 @@ Increase the internal counter by one. These B are the only ones that do not use the matched subexpression, but simply count the number of matched lines. Thus, you may use a regular expression without submatch in this case. -=item B +=item B -Special type to handle latency values from logfiles. The matched value must be -latency in seconds, floating point numbers are supported. -Should be used with B or B options. +Type to do calculations based on the distribution of values, primarily +calculating percentiles. This is primarily geared towards latency, but can be +used for ther metrics as well. The range of values tracked with this setting +must be in the range (0–2^34) and can be fractional. Please note that neither +zero nor 2^34 are inclusive bounds, i.e. zero I be handled by a +distribution. -The B option cannot be used together with B B. +This option must be used together with the B option and/or the +B option. =back @@ -7074,33 +7092,32 @@ their configuration can be found in L. This optional setting sets the type instance to use. -=item B I - -Calculate and dispatch the configured percentile, i.e. compute the latency, so -that I of all matched latency values are smaller than or equal to the -computed latency. - -Different percentiles can be calculated by setting this option several times. +=item B I -=item B I +Calculate and dispatch the configured percentile, i.e. compute the value, so +that I of all matched values are smaller than or equal to the computed +latency. -Sets the type used to dispatch B values. +Metrics are reported with the I B (the value of the above option) +and the I C<[EInstanceE-]EPercentE>. -=item B I I +This option must be used with C. +It may be repeated to calculate more than one percentile. -Calculate and dispatch rate of latency values fall within requested interval. -Both, I and I is a duration in seconds and can be -a fractional number, such as B<0.5>. The settings specify the interval -C<(I, I]>, i.e. the range I the lower -bound and I the upper bound. I and I -can be zero, meaning no lower/upper bound. +=item B I I -Rates for different intervals can be calculated by setting this option several -times. +Export the number of values (a C) falling within the given range. +Both, I and I must be greater than or equal to zero +and may be a fractional number, such as B<0.5>. The setting specifies the +interval C<(I, I]>, i.e. the range I the +lower bound and I the upper bound. I and I +may be zero, meaning no lower/upper bound. -=item B I +Metrics are reported with the I C and the I +CTypeE[-EInstanceE]-Elower_boundE_Eupper_boundE>. -Sets the type used to dispatch B values. +This option must be used with C. +It may be repeated to calculate more than one rate. =back