-
Notifications
You must be signed in to change notification settings - Fork 772
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
[Metrics] Improve dependency injection support in meter provider build-up using SDK #3646
Merged
CodeBlanch
merged 12 commits into
open-telemetry:main
from
CodeBlanch:meterprovider-dependencyinjection
Sep 12, 2022
Merged
[Metrics] Improve dependency injection support in meter provider build-up using SDK #3646
CodeBlanch
merged 12 commits into
open-telemetry:main
from
CodeBlanch:meterprovider-dependencyinjection
Sep 12, 2022
Conversation
This file contains 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
CodeBlanch
changed the title
[Metrics] Improve dependency injection support in metric provider build-up using SDK
[Metrics] Improve dependency injection support in meter provider build-up using SDK
Sep 9, 2022
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #3646 +/- ##
==========================================
+ Coverage 87.29% 87.49% +0.19%
==========================================
Files 282 284 +2
Lines 10132 10195 +63
==========================================
+ Hits 8845 8920 +75
+ Misses 1287 1275 -12
|
alanwest
approved these changes
Sep 12, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changes
Brings
MeterProviderBuilder
up to ~parity withTracerProviderBuilder
changes from #3533.SDK public API
OpenTelemetry.Extensions.Hosting public API
Existing scenarios made available in SDK
New scenarios enabled
AddExporter?
For logs + traces we have
AddExporter
extensions. I didn't add one for metrics. @alanwest and I tried to figure out how it would work, but it is more complicated for metrics. There isn't the same concept of simple/batch processor type and exporters can be push, pull, or both. We decided to tackle this separately or not at all.Detached configuration method
Some users like @martinjt have asked for a way to configure things completely detached from the builder.
The SDK
ConfigureOpenTelemetryMetrics
extension is safe to be called multiple times. Only oneMeterProvider
will exist in theIServiceProvider
and multiple calls will all contribute to its configuration, in order. This makes it possible to detach from theMeterProviderBuilder
. This enables a scenario like this...TODOs
CHANGELOG.md
updated for non-trivial changes