You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While this is also a nice way to collect metrics, it should be named as CumulativeHistogram and Histogram should behave as other client libraries do, as this can be confusing, especially when using quantile conversion.
The text was updated successfully, but these errors were encountered:
All Prometheus histograms are cumulative by definition. The golang library does this later in the Write() method. The ruby client library will follow suit once #36 is implemented (e.g. after the big rewrite).
In contrast to other prometheus clients (i.e. golang) the histogram does not use disjoint buckets but cumulative values (see https://github.com/prometheus/client_ruby/blob/master/lib/prometheus/client/histogram.rb#L28)
While this is also a nice way to collect metrics, it should be named as
CumulativeHistogram
andHistogram
should behave as other client libraries do, as this can be confusing, especially when using quantile conversion.The text was updated successfully, but these errors were encountered: