"TRANSIENT_FAILURE" error for Jaeger exporter #9162
-
I am trying to use OpenTelemetry Collector to export my application trace logs to Jaeger, I am trying to use OTLP protocol and my application uses OTLP endpoint. My otlp configuration is as following; receivers:
otlp:
protocols:
grpc:
exporters:
jaeger:
endpoint: localhost:6831
tls:
insecure: true
logging:
file:
path: /etc/output/logs.json
processors:
batch:
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging,file,jaeger]
logs:
receivers: [otlp]
processors: []
exporters: [logging, file]
So when I run my application, trace logs can not be passed into jaeger and when I check the console logs of OpenTelemetry Collector
And when I check Jaeger logs there is nothing specific. And also if I don't use OpenTelemetry Collector, my trace logs can easily passed into Jaeger with same endpoint. I am new to OpenTelemetry Collector topic maybe I am missing something. Any help would be great. 🙏 And by the way, I am able to export trace logs into a file. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try the gRPC port: 14250. |
Beta Was this translation helpful? Give feedback.
Try the gRPC port: 14250.