Created
July 22, 2025 13:28
-
-
Save pcolazurdo/59a9848d035718ad89b07624d59f1c9b to your computer and use it in GitHub Desktop.
OTEL Local Collection (Tracing Only)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318 | |
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:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can then point your browser to: http://localhost:16686 to look at the Jaeger UI