Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

v1.2.1 - Configurable Percentiles and Bigfixes

Latest
Compare
Choose a tag to compare
@ivantopo ivantopo released this 03 Sep 21:18
· 19 commits to master since this release

Configurable Percentiles

Up until now this reporter was hardcoded to report the 90th percentile. Starting this release you can use the kamon.graphite.percentiles configuration to provide as many percentiles as you would like to send to Graphite. The default percentiles are:

kamon.graphite {
  percentiles = [50.0, 90.0, 99.0]
}

Thanks to @danischroeter for contributing this enhancement 🎉 via #10.

Legacy Graphite Support.

A new kamon.graphite.legacy-support option was added to allow sending data to Graphite versions prior to 1.1 (when tags support was introduced. Thanks to @danischroeter for contributing this enhancement via #8.

Fixes

  • The average values sent to Graphite were wrong, the reporter was actually sending the max (100th percentile). This was fixed by @danischroeter via #9. Thanks a lot!