Jaeger v2 query trying to hit localhost:4317 to send traces to otlp grpc port #8427
Replies: 1 comment 2 replies
-
|
@RishithReddyRR those warnings are from Jaeger v2's internal self-tracing — the query service uses the OpenTelemetry SDK to trace itself, and by default it tries to export to To disable this, set these environment variables: OTEL_TRACES_EXPORTER=none
OTEL_SDK_DISABLED=trueOr if you just want to stop sampling without fully disabling the SDK: OTEL_TRACES_SAMPLER=always_offThese are standard OpenTelemetry SDK environment variables that Jaeger v2 respects [1] [2]. Alternatively, if you have another Jaeger/OTLP collector running, you can point the internal telemetry to it with To reply, just mention @dosu.Static docs are dead. Try Dosu. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Whenever jaeger query v2 is been hit to see traces in UI getting following error
{"level":"warn","ts":"2026-04-23T09:41:19.245Z","caller":"grpc@v1.79.3/clientconn.go:1525","msg":"[core] [Channel #1 SubChannel #5] grpc: addrConn.createTransport failed to connect to {Addr: "[::1]:4317", ServerName: "localhost:4317", }. Err: connection error: desc = "transport: Error while dialing: dial tcp [::1]:4317: connect: connection refused"","resource":{"service.instance.id":"063f9213-2c01-4c4d-8201-94d6eefd72fd","service.name":"jaeger","service.version":""},"grpc_log":true}
is there any configuration to disable telemetry traces?
@dosu
Beta Was this translation helpful? Give feedback.
All reactions