Skip to main content

agent2perfetto

Don't build a viewer — put agent traces in the best one.

agent2perfetto converts agent session logs into Perfetto / Chrome Trace Event JSON that loads in ui.perfetto.dev — the free, browser-based trace viewer Google built for Chrome and Android profiling. You get hierarchical slices, counter time series, flow arrows, and PerfettoSQL over your agent session without anyone writing a line of viewer code. Supported inputs: Claude Code session JSONL and Codex CLI rollout logs (auto-detected; --format to override).

The problem

Agent observability today is bipolar:

  • Vendor SaaS dashboards (LangSmith, LangFuse): cloud accounts, proprietary UIs, your traces leaving your machine.
  • Text dumps and aggregators (ccusage): totals and averages, no time axis.

But an agent session is a hierarchical event stream on a timeline: session → turns → tool calls → results. The one local UI that renders exactly that shape — millions of events, layered slices, counter tracks, flows — already exists, is free, runs in your browser, and officially accepts arbitrary trace-like data. Nobody was sending agent traces to it. This project is exactly that adapter.

Quickstart

Requires Python 3.10+, stdlib only, zero runtime network calls.

# from PyPI
pip install agent2perfetto

# or from a checkout
pip install .

# convert the checked-in example
agent2perfetto examples/sample_session.jsonl
# -> examples/sample_session.perfetto.json

# convert one of your own sessions and open the viewer
agent2perfetto ~/.claude/projects/<project>/session.jsonl --open

# Codex CLI rollout logs work too (format is auto-detected)
agent2perfetto ~/.codex/sessions/2026/09/05/rollout-*.jsonl --open

--open runs macOS open https://ui.perfetto.dev (falls back to your browser elsewhere), then prints drag-and-drop instructions. Drag the generated .perfetto.json into the UI — the trace is parsed in your browser's memory and never uploaded. (For a fully offline setup, Perfetto's UI also ships as a WASM bundle you can serve from localhost.)

Self-check a trace file any time:

python scripts/validate_trace.py examples/sample_session.perfetto.json

What the trace looks like (track map)

Agent concept Perfetto element
Session process (one process per sessionId, named agent session <id>)
Assistant turns complete slices (X) on the turns thread
Tool calls complete slices named by tool (Bash, Read, …) on the tools thread
Tool results complete slices (result <tool>) on the tools thread
Call → result flow arrows (s/f events paired by tool_use_id)
Context occupancy counter tracks ctx_total, ctx_input, ctx_cache_read, ctx_cache_create — per-call occupancy
Session spend counter tracks spend_total, spend_input, spend_cache_read, spend_cache_create — cumulative
User prompts instant markers on the turns thread

Timeline rules (deterministic — same log in, same trace out):

  • ts = microseconds since the earliest timestamp in the file; the original epoch time and ISO base timestamp are kept in metadata.
  • A turn/tool slice runs from its message timestamp to the next event's timestamp (for a tool call, to its result's arrival). The final slice of a stream has nothing to bound it, so it gets a 1 s estimate flagged "dur_estimated": true in its args.
  • Counters are emitted at every assistant message. ctx_* is per-call occupancy: the input_tokens, cache_read_input_tokens, cache_creation_input_tokens that that single call reported (plus their total) — the model's context on that turn. spend_* is the cumulative sum of the same fields across the session — the billing trajectory.

Approximation honesty

The context lane is an approximation. ctx_* counters report the usage fields each API call claimed; they do not reproduce the provider-side context window (cache lifetime, truncation, and system-prompt composition are not observable from the log). spend_* counters re-bill cached tokens every call, so they grow monotonically and are not context size. Slice durations that had no bounding event are estimates. This note ships inside every trace under metadata.approximation_note, and the caveats above live in metadata.

Privacy: local by construction

The converter is a file-to-file transform with zero network calls. --open merely opens a URL in your browser; the trace itself travels by drag-and-drop and is processed in the browser locally. Nothing is uploaded, no account exists, no telemetry exists.

How this differs from adjacent tools

Adjacent tool Difference
LangSmith / LangFuse Web SaaS with their own UIs and cloud storage. Here: local file → a standard format; viewer cost = 0.
ccusage / tokscale Aggregates (how much was spent). Here: a time-space map (what ate context, when).
Perfetto itself Provides the viewer and format but has no agent-domain adapter — that gap is exactly this project.
Perfetto MCP servers The reverse direction (LLMs analyzing Perfetto traces). Here a human looks.
One-off "LLM trace JSON" scripts A maintained adapter with golden-fixture tests against schema drift, plus lane semantics.

Limits & roadmap

  • v0.1 supported Claude Code JSONL only. v0.2 introduces the vendor-neutral Agent Trace IR (docs/agent-trace-ir.md): new agent logs enter as adapters into the same IR, so the same viewer, lanes, and PerfettoSQL work across harnesses. The Codex CLI rollout adapter landed in v0.2.1 (cross-validated against the yield-audit Codex parser on shared fixtures; codex cached_input_tokens maps to cache_read, codex reports no cache-creation counter, and codex shell tools render as Bash with list commands joined). Subagent/async slices are also planned.
  • Perfetto's JSON format is the legacy entry point; a proto-format exporter is on the roadmap.
  • Multiple sessionIds in one file become multiple processes; per-subagent processes and context-composition lanes (system prompt / files / MCP schemas) are future work.

Development

python3 -m venv /tmp/a2p-venv && . /tmp/a2p-venv/bin/activate
pip install -e .
pip install pytest   # test-only dependency; the package itself needs nothing
pytest

Layout: src/agent2perfetto/ — a three-stage pipeline (parser adapter → ir Agent Trace IR → trace Perfetto emitter → cli), synthetic fixtures and a frozen golden trace under tests/fixtures/, the example session and its generated trace under examples/, and the IR schema at docs/agent-trace-ir.md.

License

Apache-2.0. See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agent2perfetto-0.2.1.tar.gz (32.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agent2perfetto-0.2.1-py3-none-any.whl (26.2 kB view details)

Uploaded Python 3

File details

Details for the file agent2perfetto-0.2.1.tar.gz.

File metadata

  • Download URL: agent2perfetto-0.2.1.tar.gz
  • Upload date:
  • Size: 32.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agent2perfetto-0.2.1.tar.gz
Algorithm Hash digest
SHA256 a06e116cfd1594189021e7feb519c0f0acda09b301ffb106882c7500a37d2cbc
MD5 7b1b2e4305b2c91467a591165b4c9947
BLAKE2b-256 bdd1ea3163cf7a2403eaf6adb3938b3c64097c996688e11d20a8da2b2aaf3426

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent2perfetto-0.2.1.tar.gz:

Publisher: pypi.yml on ictechgy/agent2perfetto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agent2perfetto-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: agent2perfetto-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 26.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agent2perfetto-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 081df9ec9f9ee52f5aa960cac7575043b5f62939fc0ebe2f024b7208be750348
MD5 5b1422a18c93e083d70612ae3a4a75cf
BLAKE2b-256 391d1230715617c689289e7e18474429e8edf0f4d9b80f9116776d01f1fc9b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent2perfetto-0.2.1-py3-none-any.whl:

Publisher: pypi.yml on ictechgy/agent2perfetto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.2.2

2 files

This release

0.2.1 This release

2 files

0.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page