-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Telemetry provider PoC #5107
Telemetry provider PoC #5107
Conversation
Codecov Report
@@ Coverage Diff @@
## main #5107 +/- ##
==========================================
- Coverage 90.57% 90.54% -0.04%
==========================================
Files 189 190 +1
Lines 11116 11143 +27
==========================================
+ Hits 10068 10089 +21
- Misses 826 830 +4
- Partials 222 224 +2
Continue to review full report at Codecov.
|
5c97e97
to
1101695
Compare
1101695
to
f42add2
Compare
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
615d81c
to
ac30277
Compare
I refactored this a bit to show how to skip GRPC logger as part of a 'test telemetry provider' and to adapt to main changes |
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
Closed as inactive. Feel free to reopen if this PR is still being worked on. |
FWIW #8111 (comment) |
Description:
This is a proof of concept in support of #4970.
A
TelemetryProvider
is defined to support overriding the telemetry on the Collector. A default implementation is provided, but alternatives can be provided to override telemetry providers and also to deal with #4971.The
TelemetryProvider
interface has two methods: theSetupTelemetry
andZPages
. The latter is needed since the span processor needs to be passed as part of the zpages server registration. This could be a separate, optional interface, similar to what happens now for ZPages oncomponent.Host
.Link to tracking Issue: #4970