-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Clarify how to visualize traces on Jaeger #8316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
|
2505e44 to
523e1ac
Compare
|
/fix:format |
|
✅ |
|
Hi @network-charles, thanks for your contribution! Really appreciate it. 😄 We currently have some reusable includes and snippets that could be very helpful here. They're meant to describe setup and usage not only for Jaeger, but also for other backends like Prometheus and Zipkin — which helps us keep the docs consistent across languages and guides. You can find the Jaeger include here: content/en/docs/languages/_includes/exporters/jaeger.md, and you can import it in the page using: As a reference, the Python / Exporters page shows how these includes look when rendered in the docs: https://deploy-preview-8316--opentelemetry.netlify.app/docs/languages/python/exporters. It might make sense to update the Ruby / Exporters page to use this include and, if possible, extend it to cover usage examples for other backends as well. WDYT? @open-telemetry/docs-approvers @open-telemetry/ruby-contrib-approvers @open-telemetry/ruby-approvers any thoughts on this approach? |
|
It's a pleasure, @vitorvasc. The reusable Jaeger snippet is nice. The only issue now is the Docker command. It has additional ports. From the Ruby exporters page: docker run -d --name jaeger \
-e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \
-e COLLECTOR_OTLP_ENABLED=true \
-p 6831:6831/udp \
-p 6832:6832/udp \
-p 5778:5778 \
-p 16686:16686 \
-p 4317:4317 \
-p 4318:4318 \
-p 14250:14250 \
-p 14268:14268 \
-p 14269:14269 \
-p 9411:9411 \
jaegertracing/all-in-one:latestJaeger snippet: docker run --rm \
-e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \
-p 16686:16686 \
-p 4317:4317 \
-p 4318:4318 \
-p 9411:9411 \
jaegertracing/all-in-one:latest |
The PR addresses the following:
Fixes #8036