Replies: 2 comments 3 replies
-
/cc @brunobat (opentelemetry), @radcortez (opentelemetry) |
Beta Was this translation helpful? Give feedback.
0 replies
-
I think you are right @wabrit |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've just been working through the 3.2-latest Using Open Telemetry guide and ran into issues when trying to push spans to the
jaegertracing/all-in-one:latest
docker image suggested in the example.With the suggested configuration, I received no spans in jaegar at all. I think that was because the default value of
quarkus.otel.traces.exporter
iscdi
, and it needed to be set tootlp
.Once I did that, the running image log reported the following error:
which looked like a protocol error.
I fixed this by setting
quarkus.exporter.otlp.traces.protocol=grpc
(the default beinghttp/protobuf
). Once that was done, spans started appearing in jaegar.Unless I've missed something, this feels like a doc bug; it should list those 2 extra properties as a necessary part of the configuration.
Beta Was this translation helpful? Give feedback.
All reactions