-
Notifications
You must be signed in to change notification settings - Fork 929
Add record_min_max option to exponential histogram aggregation #5377
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
Open
ocelotl
wants to merge
5
commits into
open-telemetry:main
Choose a base branch
from
ocelotl:issue_3322
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+172
−44
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3410c68
opentelemetry-sdk: add record_min_max option to exponential histogram…
ocelotl b6077c6
changelog: rename fragment to match PR 5377
ocelotl 703c1d4
Merge branch 'main' into issue_3322
herin049 56aa292
test: parameterize record_min_max tests with subTest per review feedback
ocelotl 74f652b
fix(ci): split test_meter_provider.py to satisfy pylint max-module-lines
ocelotl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| `opentelemetry-sdk`: add `record_min_max` option to `ExponentialBucketHistogramAggregation`, matching the option already available on `ExplicitBucketHistogramAggregation` and required by the specification |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,6 +36,8 @@ coverage.xml | |
| .cache | ||
| htmlcov | ||
|
|
||
| .agent/ | ||
|
|
||
| # Translations | ||
| *.mo | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
opentelemetry-sdk/tests/_configuration/test_meter_provider_exemplar_filter.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| # Copyright The OpenTelemetry Authors | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # Tests access private members of SDK classes to assert correct configuration. | ||
| # pylint: disable=protected-access | ||
|
|
||
| import unittest | ||
|
|
||
| from opentelemetry.sdk._configuration._meter_provider import ( | ||
| create_meter_provider, | ||
| ) | ||
| from opentelemetry.sdk._configuration.models import ( | ||
| ExemplarFilter as ExemplarFilterConfig, | ||
| ) | ||
| from opentelemetry.sdk._configuration.models import ( | ||
| MeterProvider as MeterProviderConfig, | ||
| ) | ||
| from opentelemetry.sdk.metrics import ( | ||
| AlwaysOffExemplarFilter, | ||
| AlwaysOnExemplarFilter, | ||
| TraceBasedExemplarFilter, | ||
| ) | ||
|
|
||
|
|
||
| class TestExemplarFilter(unittest.TestCase): | ||
| @staticmethod | ||
| def _make_config(exemplar_filter): | ||
| return MeterProviderConfig(readers=[], exemplar_filter=exemplar_filter) | ||
|
|
||
| def test_always_on(self): | ||
| provider = create_meter_provider( | ||
| self._make_config(ExemplarFilterConfig.always_on) | ||
| ) | ||
| self.assertIsInstance( | ||
| provider._sdk_config.exemplar_filter, AlwaysOnExemplarFilter | ||
| ) | ||
|
|
||
| def test_always_off(self): | ||
| provider = create_meter_provider( | ||
| self._make_config(ExemplarFilterConfig.always_off) | ||
| ) | ||
| self.assertIsInstance( | ||
| provider._sdk_config.exemplar_filter, AlwaysOffExemplarFilter | ||
| ) | ||
|
|
||
| def test_trace_based(self): | ||
| provider = create_meter_provider( | ||
| self._make_config(ExemplarFilterConfig.trace_based) | ||
| ) | ||
| self.assertIsInstance( | ||
| provider._sdk_config.exemplar_filter, TraceBasedExemplarFilter | ||
| ) | ||
|
|
||
| def test_absent_defaults_to_trace_based(self): | ||
| provider = create_meter_provider(MeterProviderConfig(readers=[])) | ||
| self.assertIsInstance( | ||
| provider._sdk_config.exemplar_filter, TraceBasedExemplarFilter | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.