-
Notifications
You must be signed in to change notification settings - Fork 1.6k
[metadatatest] Generate NewSettings that accepts componenttest.Telemetry #12216
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
Conversation
15adcbb
to
516a8c1
Compare
Codecov ReportAttention: Patch coverage is
❌ Your patch status has failed because the patch coverage (77.01%) is below the target coverage (95.00%). You can increase the patch coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## main #12216 +/- ##
==========================================
- Coverage 91.29% 91.22% -0.07%
==========================================
Files 465 465
Lines 25629 25647 +18
==========================================
Hits 23397 23397
- Misses 1819 1837 +18
Partials 413 413 ☔ View full report in Codecov by Sentry. |
a21490e
to
4140fce
Compare
Signed-off-by: Bogdan Drutu <[email protected]>
4140fce
to
e51bc79
Compare
@@ -49,7 +49,7 @@ type Telemetry struct { | |||
traceProvider *sdktrace.TracerProvider | |||
} | |||
|
|||
func NewTelemetry(opts ...TelemetryOption) Telemetry { | |||
func NewTelemetry(opts ...TelemetryOption) *Telemetry { |
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.
Not a breaking change because it was added this release.
d9b97ff
…try (open-telemetry#12216) This is the last functionality needed to replace `metadatatest.Telemetry` with `componenttest.Telemetry`. The `metadatatest.Telemetry` will be deprecated next release to give time to change contrib since it is a large change. Signed-off-by: Bogdan Drutu <[email protected]>
This is the last functionality needed to replace
metadatatest.Telemetry
withcomponenttest.Telemetry
.The
metadatatest.Telemetry
will be deprecated next release to give time to change contrib since it is a large change.