To install the Jaeger tracing tool locally using a prebuilt container image, follow the instructions below.

Prerequisites
Procedure
  1. Start Podman:

    $ sudo service podman start
  2. 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
  3. Navigate to http://localhost:16686 to access the Jaeger UI.

  4. Follow the steps in Enabling Che metrics collections to finish the procedure.