mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-02 08:44:44 +00:00
include jaeger setup
This commit is contained in:
parent
d734607043
commit
4231bbfcb1
1 changed files with 17 additions and 0 deletions
|
@ -74,6 +74,23 @@ Currently, only the meta-reference provider is implemented. It can be configured
|
|||
sqlite_db_path: "/path/to/telemetry.db"
|
||||
```
|
||||
|
||||
## Jaeger to visualize traces
|
||||
Start a Jaeger instance with the OTLP HTTP endpoint at 4318 and the Jaeger UI at 16686 using the following command:
|
||||
|
||||
```bash
|
||||
docker run -d \
|
||||
--name jaeger \
|
||||
-p 6831:6831/udp \
|
||||
-p 14268:14268 \
|
||||
-p 16686:16686 \
|
||||
-p 4317:4317 \
|
||||
-p 4318:4318 \
|
||||
-e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \
|
||||
-e COLLECTOR_OTLP_ENABLED=true \
|
||||
jaegertracing/all-in-one:latest
|
||||
```
|
||||
|
||||
Once the Jaeger instance is running, you can visualize traces by navigating to http://localhost:16686.
|
||||
|
||||
## Querying Examples
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue