Merge pull request #367 from matschaffer/patch-1

Added additional detail for timing percentiles
This commit is contained in:
Dan Rowe 2013-11-28 18:22:14 -08:00
Родитель d4db62cce4 8b5538a8eb
Коммит 8d5f687622
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -38,6 +38,12 @@ generate the following list of stats for each threshold:
Where `$KEY` is the stats key you specify when sending to statsd, and `$PCT` is
the percentile threshold.
Note that the `mean` metric is the mean value of all timings recorded during
the flush interval whereas `mean_$PCT` is the mean of all timings which fell
into the `$PCT` percentile for that flush interval. And the same holds for sum
and upper. See [issue #157](https://github.com/etsy/statsd/issues/157) for a
more detailed explanation of the calculation.
If the count at flush is 0 then you can opt to send no metric at all for this timer,
by setting `config.deleteTimers`.