We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? We want to use the Exponential Histograms features publicly released in version 1.17.0.
Describe the solution you'd like I'd like to use the public API.
Describe alternatives you've considered One can import it from opentelemetry.sdk.metrics._internal.aggregation
opentelemetry.sdk.metrics._internal.aggregation
Additional context Currently the code in
opentelemetry-python/opentelemetry-sdk/src/opentelemetry/sdk/metrics/view/__init__.py
Lines 25 to 33 in b6a1b22
ExponentialBucketHistogramAggregation
The text was updated successfully, but these errors were encountered:
fix: export ExponentialBucketHistogramAggregation from opentelemetry.…
4e7b2a6
…sdk.metrics.view Without this PR if one wants to use exponential histrograms, which were added in realease 1.17.0 (https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md#version-1170038b0-2023-03-22), one needs to import it from the private package opentelemetry.sdk.metrics._internal.aggregation. This PR fixes open-telemetry#3239.
6b38349
…sdk.metrics.view (#3240) * fix: export ExponentialBucketHistogramAggregation from opentelemetry.sdk.metrics.view Without this PR if one wants to use exponential histrograms, which were added in realease 1.17.0 (https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md#version-1170038b0-2023-03-22), one needs to import it from the private package opentelemetry.sdk.metrics._internal.aggregation. This PR fixes #3239.
Successfully merging a pull request may close this issue.
Is your feature request related to a problem?
We want to use the Exponential Histograms features publicly released in version 1.17.0.
Describe the solution you'd like
I'd like to use the public API.
Describe alternatives you've considered
One can import it from
opentelemetry.sdk.metrics._internal.aggregation
Additional context
Currently the code in
opentelemetry-python/opentelemetry-sdk/src/opentelemetry/sdk/metrics/view/__init__.py
Lines 25 to 33 in b6a1b22
ExponentialBucketHistogramAggregation
The text was updated successfully, but these errors were encountered: