Skip to content

Commit

Permalink
Update docs: quickstart enable zipkin (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavolloffay authored and black-adder committed Sep 15, 2017
1 parent b8a4fe0 commit 651c8ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/getting_started.md
Expand Up @@ -7,8 +7,8 @@ This image, designed for quick local testing, launches the Jaeger UI, collector,
The simplest way to start the all in one docker image is to use the pre-built image published to DockerHub (a single command line).

```bash
docker run -d -p5775:5775/udp -p6831:6831/udp -p6832:6832/udp \
-p5778:5778 -p16686:16686 -p14268:14268 jaegertracing/all-in-one:latest
docker run -d -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 -p5775:5775/udp -p6831:6831/udp -p6832:6832/udp \
-p5778:5778 -p16686:16686 -p14268:14268 -p9411:9411 jaegertracing/all-in-one:latest
```

You can then navigate to `http://localhost:16686` to access the Jaeger UI.
Expand All @@ -22,7 +22,7 @@ Port | Protocol | Component | Function
6832 | UDP | agent | accept jaeger.thrift over binary thrift protocol
5778 | HTTP | agent | serve configs
16686| HTTP | web | serve frontend
14268| HTTP | collector | accept zipkin.thrift from zipkin senders
9411 | HTTP | collector | Zipkin compatible endpoint


## Kubernetes and OpenShift
Expand Down

0 comments on commit 651c8ce

Please sign in to comment.