Running Jaeger

The easiest way to get started with Jaeger is to run Jaeger via Docker:

  1. $ docker run -d \
  2. -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
  3. -p 5775:5775/udp \
  4. -p 6831:6831/udp \
  5. -p 6832:6832/udp \
  6. -p 5778:5778 \
  7. -p 16686:16686 \
  8. -p 14268:14268 \
  9. -p 9411:9411 \
  10. jaegertracing/all-in-one:1.6

You can then navigate to [http://localhost:16686](http://localhost:16686) to access the Jaeger UI.

See Getting Started with Jaeger for more information.