Local-first AI Agent observability & debugging toolkit. The SQLite of Agent tracing.
Project description
TraceBoard
Local-first AI Agent observability & debugging toolkit.
TraceBoard is the SQLite of Agent tracing — zero config, fully local, instant setup. No cloud accounts, no Docker, no external databases. Just pip install and go.
Features
- Zero Config —
pip install traceboard+ 2 lines of code - Local First — All data stored in a local SQLite file, zero privacy risk
- Built-in Web Dashboard —
traceboard uiopens an interactive trace viewer - OpenAI Agents SDK — Native integration via
TracingProcessorinterface - Cost Tracking — Automatic per-model cost calculation (GPT-4o, o1, o3, GPT-4.1, etc.)
- Live Updates — WebSocket-powered real-time view with HTTP polling fallback
- Data Export — Export traces to JSON or CSV for offline analysis
- Offline — Works without any internet connection
Quick Start
Install
pip install traceboard
Integrate (2 lines)
import traceboard
traceboard.init()
# Your existing OpenAI Agents SDK code — no changes needed
from agents import Agent, Runner
agent = Agent(name="Assistant", instructions="You are a helpful assistant.")
result = Runner.run_sync(agent, "Hello!")
print(result.final_output)
View Traces
traceboard ui
This opens a local web dashboard at http://localhost:8745 where you can:
- Browse all traced agent runs
- Visualize execution timelines (Gantt-chart style)
- Inspect LLM prompts/responses, tool calls, and handoffs
- Track token usage and costs per model
- View aggregated metrics in real-time
How It Works
┌────────────────────┐ ┌───────────────┐ ┌──────────────────┐
│ Your Agent Code │ │ SQLite DB │ │ Web Dashboard │
│ │ │ │ │ │
│ traceboard.init() │──────>│ traceboard.db │<──────│ traceboard ui │
│ Agent.run(...) │ write │ │ read │ localhost:8745 │
└────────────────────┘ └───────────────┘ └──────────────────┘
TraceBoard implements the OpenAI Agents SDK's TracingProcessor interface. When you call traceboard.init(), it registers a custom processor that captures all traces and spans (LLM calls, tool calls, handoffs, guardrails) and writes them to a local SQLite database.
The web dashboard reads from this same SQLite file and presents the data through an interactive UI. When a WebSocket connection is available, the dashboard receives near-real-time updates (~1 s latency); otherwise it falls back to HTTP polling.
CLI Commands
traceboard ui # Start web dashboard (default: http://localhost:8745)
traceboard ui --port 9000 # Custom port
traceboard ui --no-open # Don't auto-open browser
traceboard export # Export all traces to JSON (stdout)
traceboard export -o traces.json # Export to file
traceboard export -f csv -o data.csv # Export to CSV (traces + spans files)
traceboard export --pretty # Pretty-print JSON
traceboard clean # Delete all trace data
Configuration
import traceboard
traceboard.init(
db_path="./my_traces.db", # Custom database path (default: ./traceboard.db)
auto_open=False, # Don't auto-open browser on init
)
Programmatic Export
from traceboard import TraceExporter
exporter = TraceExporter("./traceboard.db")
# Export all traces to JSON file
data = exporter.export_json("traces.json")
# Export specific traces to CSV
exporter.export_csv("output.csv", trace_ids=["trace_abc123"])
# Get data in memory (no file written)
data = exporter.export_json()
print(f"Exported {data['trace_count']} traces")
Supported Models (Cost Tracking)
TraceBoard supports cost tracking for 6 providers, 100+ model variants:
| Provider | Models |
|---|---|
| OpenAI | gpt-5.2, gpt-5.1, gpt-5, gpt-5-mini, gpt-5-nano, gpt-4.1, gpt-4o, o1, o3, o4-mini, and more |
| Anthropic | claude-opus-4.6, claude-opus-4.5, claude-sonnet-4.5, claude-haiku-4.5, claude-opus-4, claude-sonnet-4, claude-3.5-sonnet |
gemini-3-pro-preview, gemini-3-flash-preview, gemini-2.5-pro, gemini-2.5-flash, gemini-2.0-flash |
|
| DeepSeek | deepseek-chat, deepseek-reasoner |
| Meta | llama-4-maverick, llama-4-scout, llama-3.3-70b, llama-3.1-405b |
| Mistral | mistral-large-latest, mistral-medium-latest, mistral-small-latest, codestral-latest |
Unknown models fall back to default pricing ($2.00/$8.00 per 1M tokens). Pricing data is sourced from each provider's official pricing page and updated with each release.
Architecture
traceboard/
├── __init__.py # Public API: init(), get_processor()
├── cli.py # CLI commands (ui, clean, export)
├── config.py # Configuration dataclass
├── cost.py # Model pricing & cost calculation
├── sdk/
│ ├── processor.py # TracingProcessor implementation
│ └── exporter.py # JSON & CSV export utilities
├── server/
│ ├── app.py # FastAPI application factory
│ ├── database.py # Async + sync SQLite wrappers
│ ├── models.py # Pydantic data models
│ └── routes/
│ ├── traces.py # Trace CRUD endpoints
│ ├── spans.py # Span query endpoints
│ └── metrics.py # Metrics + WebSocket live updates
└── dashboard/
├── index.html # Single-page dashboard (Alpine.js + Tailwind)
└── static/
├── app.js # Dashboard application logic
└── styles.css # Custom styles
REST API
When the dashboard is running (traceboard ui), the following API endpoints are available:
| Method | Endpoint | Description |
|---|---|---|
GET |
/api/traces |
List traces (paginated, filterable) |
GET |
/api/traces/{id} |
Get trace detail with all spans |
GET |
/api/traces/{id}/spans |
Get flat span list for a trace |
GET |
/api/traces/{id}/tree |
Get span tree for timeline view |
GET |
/api/traces/{id}/export |
Export a single trace |
DELETE |
/api/traces |
Delete all traces |
GET |
/api/metrics |
Aggregated metrics |
GET |
/api/export |
Export all data as JSON |
WS |
/api/ws/live |
WebSocket for live metric updates |
Development
# Clone and install in dev mode
git clone https://github.com/123zcr/traceboard.git
cd traceboard
pip install -e ".[dev]"
# Run tests
pytest
# Start dashboard in dev mode
traceboard ui --no-open
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/my-feature) - Make your changes and add tests
- Run
pytestto ensure all tests pass - Submit a pull request
Requirements
- Python >= 3.10
- OpenAI Agents SDK (
openai-agents)
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file traceboard-0.1.1.tar.gz.
File metadata
- Download URL: traceboard-0.1.1.tar.gz
- Upload date:
- Size: 35.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e5b504607472f0c70d05f6f31c7de3645ad706a01be8e2aed4a00ab86116d9d
|
|
| MD5 |
13cb9c9cdbcb559c95add77a3fb1df0b
|
|
| BLAKE2b-256 |
b75f95a2ae5835a43abae2cc6a3e46cf6c8948fb1438b5c2b7b39e348d1b5694
|
File details
Details for the file traceboard-0.1.1-py3-none-any.whl.
File metadata
- Download URL: traceboard-0.1.1-py3-none-any.whl
- Upload date:
- Size: 33.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30a70a04dfb2b8bc9a009e09d1d3f47dcd0f35ce3f53f735d1d3fa8a79ea6e7b
|
|
| MD5 |
810940566901da8aad3cebfafe99a4c9
|
|
| BLAKE2b-256 |
435a0fbf9d951acf43bbbce63aa1be8b1c2132646ad98fc1c5105cf71ecbdc3d
|