-
hi! Which transport opentelemetry via http and opentelemetry via gRPC use: TCP or UDP? Otlp http doc says about TCP (this is only place, that talks about transport). Google says, what gRPC usually use TCP, but in otlp doc I couldn't find any info about it |
Beta Was this translation helpful? Give feedback.
Answered by
jack-berg
Feb 20, 2024
Replies: 1 comment 1 reply
-
Since the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
serj-maks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since the
grpc
is built on top of http/2, thegrpc
version of OTLP uses TCP. Thehttp/protobuf
version of OTLP uses http/2 or http/1.1 so it uses TCP as well.