segmentio / stats

Go package for abstracting stats collection
https://godoc.org/github.com/segmentio/stats
MIT License
208 stars 32 forks source link

more accurate GC pause times #62

Closed achille-roussel closed 7 years ago

achille-roussel commented 7 years ago

The current values reported for GC pauses are the sum over the collection period (5s), which gives values that aren't very representative of the actual pause time.

This change changes the way the metric is reported to use three gauges for min/max/avg instead of a histogram of the sums.