Replies: 1 comment 1 reply
-
Hey @dpzain! I'm here to help you with any bugs, questions, or contributions you have. Let's tackle this together! To deploy Jaeger-Ingester and Jaeger-Query using Docker with configuration files, you can follow these steps:
Here's an example of how you can run the Jaeger-Ingester and Jaeger-Query containers with configuration files: # Run Jaeger-Ingester
docker run -d --rm \
--name jaeger-ingester \
-v /path/to/your/ingester-config.yaml:/etc/jaeger/ingester-config.yaml \
jaegertracing/jaeger-ingester:2.2.0 \
--config-file=/etc/jaeger/ingester-config.yaml
# Run Jaeger-Query
docker run -d --rm \
--name jaeger-query \
-p 16686:16686 \
-v /path/to/your/query-config.yaml:/etc/jaeger/query-config.yaml \
jaegertracing/jaeger-query:2.2.0 \
--config-file=/etc/jaeger/query-config.yaml Replace To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
-
As the title title, I have already deployed Otel Collector, Kafka, and ES locally, but now I only want to deploy Jaeger-Ingester and Jaeger-Query. (It's best to separate two containers),I have found the relevant configuration files(https://github.com/jaegertracing/jaeger/tree/main/cmd/jaeger), but I have searched through the documentation and cannot find how to specify the configuration files and start them up; Who can tell me how to deploy these two containers based on the latest Jaeger version(2.2.0);be deeply grateful!
`docker run --rm --name jaeger
-p 16686:16686 \
jaegertracing/jaeger:2.2.0
//how to specify the configuration files?....volumes?`
Beta Was this translation helpful? Give feedback.
All reactions