opentelemetry-client: add ServiceTalk[Grpc|Http]Sender implementations - #3447
Draft
bryce-anderson wants to merge 1 commit into
Draft
opentelemetry-client: add ServiceTalk[Grpc|Http]Sender implementations#3447bryce-anderson wants to merge 1 commit into
bryce-anderson wants to merge 1 commit into
Conversation
bryce-anderson
force-pushed
the
bl_anderson/ServiceTalkExporter
branch
3 times, most recently
from
August 27, 2026 18:26
cf0816b to
cfacfce
Compare
… HttpSender We want to use ServiceTalk as the transport for emitting OTel telemetry to the collector. The OTel SDK exposes a small SPI for this — the GrpcSender and HttpSender types — which is how the default OTLP clients are built. - Add the `servicetalk-opentelemetry-otlp-sender` module implementing `GrpcSender`/`HttpSender` and their `*Provider` SPI entries on top of ServiceTalk's gRPC and HTTP clients, mapping the OTel timeout, retry policy, SSL, and proxy options onto the client builders. - Add `OtelCompressorBufferEncoder` to bridge the OTel `Compressor` API to ServiceTalk request encoding. - Add an `opentelemetry-jaeger` example and integration tests backed by a mock OTLP collector. OTel telemetry can be exported over ServiceTalk's OTLP gRPC and HTTP transports.
bryce-anderson
force-pushed
the
bl_anderson/ServiceTalkExporter
branch
from
August 28, 2026 22:36
cfacfce to
532393d
Compare
bryce-anderson
marked this pull request as ready for review
August 28, 2026 22:36
bryce-anderson
marked this pull request as draft
August 31, 2026 18:32
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
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.
Motivation
We want to use ServiceTalk as the transport for emitting OTEL telemetry to the collector. It turns out there is a nice and simple abstraction for this, the
[Grpc|Http]Sendertypes, which is how the default clients are built.Modifications
Add implementations.