rcrowley / go-metrics

Go port of Coda Hale's Metrics library
Other
3.43k stars 493 forks source link

Implementation of distribution metric #271

Closed SubChord closed 8 months ago

SubChord commented 4 years ago

This distribution metrics is in essence an histogram with customizable buckets.

This gives us the freedom to define our own buckets in stead of the predefined percentiles.

SubChord commented 4 years ago

Implemented new type: Vector-Counter

It is a collection of Counters as found in prometheus. Support for prometheus was implemented as well in: https://github.com/deathowl/go-metrics-prometheus/pull/15

SubChord commented 4 years ago

@rcrowley any plans on accepting PRs?

keithknott26 commented 1 year ago

Yes, it would be great if this were merged in I'm looking to use it for a project i'm working on

deathowl commented 1 year ago

@rcrowley any interest in mergint this so I can merge https://github.com/deathowl/go-metrics-prometheus/pull/15 ?

deathowl commented 1 year ago

@mihasya i see you took over ownership. Could you take a look at this?