Tracing¶
AMD Inference Server reports request tracing using Jaeger and they allow users to see how requests move through the system in real-time.
Quickstart¶
The easiest way to view the collected traces is to run Jaeger Tracing as a binary in the container while an instrumented application runs. In the container:
$ cd /tmp
$ wget https://github.com/jaegertracing/jaeger/releases/download/v1.26.0/jaeger-1.26.0-linux-amd64.tar.gz
$ tar -xzf jaeger-1.26.0-linux-amd64.tar.gz
$ cd jaeger-1.26.0-linux-amd64
$ ./jaeger-all-in-one
Once the jaeger executable is running, start your instrumented application.
The collected traces can be viewed at (by default) localhost:16686
using Jaeger’s browser interface.