Replies: 1 comment
-
Hey @kurkoc! 👋 I'm here to help you out with your issue. I'm a bot designed to assist with bug fixes, answer questions, and guide you on your open source journey. To resolve the "jaeger:4317" error and ensure your custom configuration works, you need to ensure that the OpenTelemetry Collector and Jaeger are correctly configured to avoid port conflicts and communicate properly. Here's a simplified configuration and setup:
service:
extensions: [jaeger_storage, jaeger_query, healthcheckv2]
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [jaeger_storage_exporter]
extensions:
healthcheckv2:
use_v2: true
http:
endpoint: 0.0.0.0:13133
jaeger_query:
storage:
traces: query_storage
jaeger_storage:
backends:
query_storage:
memory:
max_traces: 100000
receivers:
otlp:
protocols:
grpc:
http:
processors:
batch:
exporters:
jaeger_storage_exporter:
trace_storage: query_storage
By ensuring that each service uses unique ports and that the configuration files are correctly set up, you should be able to resolve the "jaeger:4317" error and have a working setup [1]. To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other |
Beta Was this translation helpful? Give feedback.
-
maybe I'm asking a very simple question, but this problem has taken me a long time.
i am running a otelcollector and jaeger with same network on docker. (windows machine)
docker run -d --name jaeger -p 16686:16686 -p 4319:4317 -p 4320:4318 -p 5778:5778 -p 9411:9411 -p 13134:13133 --network tracing-pipeline jaegertracing/jaeger:2.3.0
sending traces with telemetrygen and everything looks good.
but when I change my jager run command I get an error on otelcollector logs. cant find the "jaeger:4317"
docker run -d --name jaeger -p 16686:16686 -p 4319:4317 -p 4320:4318 -p 5778:5778 -p 9411:9411 -p 13134:13133 -v C:\jaeger\config.yaml:/jaeger/config.yaml --network tracing-pipeline jaegertracing/jaeger:2.3.0 --config /jaeger/config.yaml
Can you write a config for the simplest example in this way? Whatever I did, it didn't work.
Beta Was this translation helpful? Give feedback.
All reactions