Open sterziev88 opened 8 months ago
I'm not a maintainer and not sure what the exact issue is yet, but I was getting the same error and was able to fix using the following setup/configs. Hope it helps.
helm install otel-collector open-telemetry/opentelemetry-collector -f otel-values.yaml
helm install jaeger jaegertracing/jaeger -f jaeger-values.yaml
My backend service is using the OTLP exporter via gRCP, similar to https://github.com/open-telemetry/opentelemetry-go/blob/main/example/otel-collector/main.go
@sterziev88 Obviously, the jaeger is not connected, you need to check your jaeger address is correct
Hello,
I am trying to collect and send traces via opentelemetry to my jaeger. At the moment I use jaeger UI to see my traces and my applications use zipkin to send that traces. I want to use opentelemetry and the is what I have configured until now:
but I receive an error: 2024-03-13T13:08:58.755Z warn zapgrpc/zapgrpc.go:195 [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {Addr: "jaeger-collector.jaeger.svc.cluster.local:4317", ServerName: "jaeger-collector.jaeger.svc.cluster.local:4317", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 172.20.136.48:4317: connect: connection refused" {"grpc_log": true}
If add this for endpoint: tls: insecure: true I receive the same error.
Any suggestions?