-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Histogram aggregator #317
Comments
I'm not sure if this is blocked on the spec or not. We've settled the issue about TimeSeries representation in the protocol, The basic Histogram Aggregator will be similar to the other Measure-kind of aggregators (DDSketch, Array, MinMaxSumCount) but will support configurable (and default) bucket ranges. The protocol supports declaring a variety of bucket-range options, probably those should be mirrored in the Histogram aggregator. |
I've been working on this. |
…ation/github.com/labstack/echo (#317) * Bump github.com/labstack/echo/v4 Bumps [github.com/labstack/echo/v4](https://github.com/labstack/echo) from 4.1.16 to 4.1.17. - [Release notes](https://github.com/labstack/echo/releases) - [Commits](labstack/echo@v4.1.16...v4.1.17) Signed-off-by: dependabot[bot] <[email protected]> * Auto-fix go.sum changes in dependent modules Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com> Co-authored-by: Tyler Yahn <[email protected]>
The metics export pipeline has support for configurable aggregators. In the SDK specification (WIP), open-telemetry/opentelemetry-specification#347, four aggregators are specified that SHOULD be provided to support measure metric instruments. One is currently missing from this set, the Histogram aggregator. This aggregator should (probably) support both exponential bucket sizes and linear bucket sizes.
The text was updated successfully, but these errors were encountered: