Unable to Export Traces to Jaeger #4283
-
I'm just getting started to export traces (which, in the future, should transform existing Kieker traces into OpenTelemetry traces). To do so, I just started a jaeger server (as described in https://www.jaegertracing.io/docs/1.6/getting-started/ and https://medium.com/jaegertracing/introducing-native-support-for-opentelemetry-in-jaeger-eb661be8183c):
and tried to create spans with a very simple Java program:
as described in https://opentelemetry.io/docs/instrumentation/java/manual/ (and with some hints from https://www.logicmonitor.com/blog/java-application-manual-instrumentation-for-distributed-traces). The jaeger UI shows up, but I'm not able to get any traces, besides the jaeger-traces queries. The log shows
Port 4318 is reachable, at least according to the jaeger log:
Also with changing details of the implementation, I was not able to get any traces into jaeger. Could anybody give me an hint what is missing here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It looks like you're using an OTLP gRPC exporter. Have you tried connecting to port |
Beta Was this translation helpful? Give feedback.
It looks like you're using an OTLP gRPC exporter. Have you tried connecting to port
4317
? That's the port that accepts OTLP over gRPC: https://www.jaegertracing.io/docs/1.42/getting-started/#all-in-one.