Local Jaeger Setup

SDK

Set up Jaeger locally to view your traces.

1Start Jaeger

bash
docker run -d --name jaeger \
-p 16686:16686 \
-p 4318:4318 \
jaegertracing/all-in-one:latest

2Configure Traccia

config.py
python
from traccia import init
init(endpoint="http://localhost:4318/v1/traces")

3Run Your Agent

agent.py
python
from traccia import observe
@observe()
def my_agent(query: str):
# Your agent code
pass
my_agent("test query")

4View Traces

Open http://localhost:16686 in your browser.

  1. Select your service from the dropdown
  2. Click "Find Traces"
  3. Click any trace to see the timeline

© 2026 Traccia.