To install the Jaeger tracing tool locally using a prebuilt container image, follow the instructions below.
Prerequisites
-
You are logged into a system as a user with
sudoprivileges. -
Podman is installed. For additional, see the Podman Installation Instructions
Procedure
-
Start Podman:
$ sudo service podman start
-
Install Jaeger using the pre-built container image.
$ podman run -d --name jaeger \ -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \ -p 5775:5775/udp \ -p 6831:6831/udp \ -p 6832:6832/udp \ -p 5778:5778 \ -p 16686:16686 \ -p 14268:14268 \ -p 9411:9411 \ jaegertracing/all-in-one:1.15
-
Navigate to
http://localhost:16686to access the Jaeger UI. -
Follow the steps in Enabling Che metrics collections to finish the procedure.