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
According to https://opentelemetry.io/docs/specs/otel/metrics/sdk/#aggregation is should be possible to add a View to an Instrument and define how that View translates that Instrument to an Histogram. In particular, the defined Boundaries in the View should be used instead of the default histogram boundaries.
That does not seem to work at all.
If I understand the code correctly, then instrument created with kind histogram will not honor the view settings at all.
This has also been discussed to other languages, e.g.:
According to https://opentelemetry.io/docs/specs/otel/metrics/sdk/#aggregation is should be possible to add a View to an Instrument and define how that View translates that Instrument to an Histogram. In particular, the defined Boundaries in the View should be used instead of the default histogram boundaries.
That does not seem to work at all.
If I understand the code correctly, then instrument created with kind
histogram
will not honor the view settings at all.This has also been discussed to other languages, e.g.:
boundaries
option inHistogramOptions
opentelemetry-js#2999 (comment)If I do this:
then the the created histogram should have the boundaries defined by the view, but instead it will have the ?DEFAULT_BOUNDARIES.
The text was updated successfully, but these errors were encountered: