UNCLASSIFIED

README.md 947 Bytes
Newer Older
sean.melissari's avatar
sean.melissari committed
1
# all-in-one
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

```
# Download the tarball from the Iron Bank repository and navigate to the 
# download directory. Run the following commands to run the grafana container
# (using jaeger-all-in-one.tar.gz as example tarball name):
podman load -i jaeger-all-in-one .
# Single command line run:
podman run -d \
  -p 5775:5775/udp \
  -p 6831:6831/udp \
  -p 6832:6832/udp \
  -p 5778:5778 \
  -p 16686:16686 \
  -p 14268:14268 \
  -p 14250:14250 \
  -p 9411:9411 \
   jaeger-all-in-one
```

Jaeger-all-in-one is used with Istio to provide distributed tracing information.

More information can be found here:

https://istio.io/docs/tasks/observability/distributed-tracing/jaeger/

jaeger-all-in-one exposes a number of ports:
5775/udp
6831/udp
6832/udp
5778/tcp
14268/tcp
14250/tcp
16686/tcp

Please refer to the official documentation for more information on jaeger-all-in-one:

sean.melissari's avatar
sean.melissari committed
38
https://www.jaegertracing.io/docs/latest/getting-started/#all-in-one
39