Skip to content

Instantly share code, notes, and snippets.

@pcolazurdo
Created July 22, 2025 13:28
Show Gist options
  • Save pcolazurdo/59a9848d035718ad89b07624d59f1c9b to your computer and use it in GitHub Desktop.
Save pcolazurdo/59a9848d035718ad89b07624d59f1c9b to your computer and use it in GitHub Desktop.
OTEL Local Collection (Tracing Only)
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
@pcolazurdo
Copy link
Author

You can then point your browser to: http://localhost:16686 to look at the Jaeger UI

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment