Subchapter 4.12
REFERENCE.mdMarkdown20 KBView on GitHub
Technical reference for the capture pipeline, the bisect mapping, and the jq recipe library.
┌──────────────────────────────────────┐
main automation ──▶ │ Chrome / Browserbase CDP target │ ◀── tracer (this skill)
(any framework) └──────────────────────────────────────┘
│ │
▼ ▼
drives page browse cdp <target> (firehose → raw.ndjson)
browse screenshot --cdp <target> --path <file> (sampler → screenshots/)
browse get html body --cdp <target> (sampler → dom/)CDP allows multiple concurrent clients on the same target. The tracer enables only read-only domains and never sends action commands like Input.dispatch* or Runtime.evaluate, so it cannot perturb the run.
Sampler commands pass --cdp <target> because they run from the trace helper process and need to attach to the traced target directly. Normal follow-up commands in a browse daemon session do not need to repeat --cdp after the first browse open ... --cdp <target>. If the default daemon may already be active in another mode, use a named --session for sampler or automation commands.
All scripts read O11Y_ROOT (default .o11y) so runs land under $O11Y_ROOT/<run-id>/. They are Node ESM modules (node 18+) and depend only on browse plus the Node standard library — no npm install step. jq is referenced throughout the docs for ad-hoc querying but the scripts themselves don’t need it.
Starts both background processes and writes manifest.json.
target — port number (e.g. 9222) or full WebSocket URL.run-id — optional; defaults to YYYYMMDDTHHMMSSZ.interval-sec — sampler period in seconds; default 2.Honours O11Y_DOMAINS (space-separated) to control which CDP domains the firehose enables. Default: Network Console Runtime Log Page. Add DOM for DOM tree mutations, Performance for navigation timing, Security for mixed-content/cert events.
PIDs are stored in <run-dir>/.cdp.pid and <run-dir>/.loop.pid so stop-capture.mjs can find them.
SIGTERM → 3s grace → SIGKILL on both background processes, then stamps manifest.json with stopped_at.
Slices cdp/raw.ndjson two ways, then writes cdp/summary.json:
cdp/<domain>/... (legacy layout, always written; see bisect map below).cdp/pages/<pid>/..., indexed by top-level Page.frameNavigated boundaries. Pages are zero-padded so they lex-sort numerically (000, 001, …). Within each page only non-empty bucket files are written so empty directories don’t pollute search results.cdp/summary.json carries the run-level rollup: sessionId, duration (wall-clock ms anchored to manifest.started_at), totalEvents, and a pages[] array. Each entry has {pageId, url, startMs, endMs, durationMs, eventCount, domains, network} — same shape as the per-page summary.json.
Idempotent: rerun safely. The cdp/pages/ tree is wiped and rebuilt each call.
Reads the bisected output and prints either tabular text or NDJSON. Subcommands:
| Subcommand | Output |
|---|---|
list | one-line page table (pid, events, duration, url) |
summary | full cdp/summary.json |
page <pid> | per-page summary.json |
page <pid> <bucket> | cat pages/<pid>/<bucket>.jsonl (e.g. network/failed, console/logs, raw) |
errors [pid|all] | unified error stream across pages: network failed, runtime exceptions, console errors, log-level errors. Each line tagged with pid and kind |
hosts [pid|all] | top hosts by request count |
host <hostname> [pid|all] | every request/response for that hostname, prefixed with [pid] |
timeline | ordered nav + lifecycle markers |
Bypassable with raw jq/rg against cdp/summary.json and cdp/pages/<pid>/ once you know the layout.
Invoked by start-capture.mjs; not meant to be called directly. Loops at the configured interval, writing PNG + HTML + an entry to index.jsonl per tick. DOM dumps go through a .partial temp file so a SIGTERM mid-write never leaves a 0-byte HTML behind; stop-capture.mjs sweeps any survivors.
Browserbase wrapper around start-capture.mjs. With --new, runs browse cloud sessions create --keep-alive and starts the tracer. With an existing session id, fetches its connectUrl via browse cloud sessions get and asserts the session is RUNNING before attaching.
Stamps the run’s manifest.json with a browserbase object containing session_id, project_id, region, started_at, expires_at, keep_alive, and the debugger_url from browse cloud sessions debug.
Reads BROWSERBASE_API_KEY. BB_SESSION_TIMEOUT (default 600) controls the timeout passed to --new sessions.
Pulls platform-side artifacts after the tracer has stopped:
browserbase/session.json — browse cloud sessions get snapshot. Always written; contains the post-run proxyBytes, status, endedAt.browserbase/logs.json — browse cloud sessions logs output. Often []. The CDP firehose is authoritative; this is a side channel for cases where Browserbase happened to record server-side log entries.browserbase/downloads.zip — only kept when there’s real content (size > 22 bytes — an empty Browserbase downloads zip is exactly the EOCD record).--release calls browse cloud sessions update --status REQUEST_RELEASE to end the session. Skip it when attaching to a session you don’t own (e.g. one a production worker is using).
| File | CDP method | What’s in it |
|---|---|---|
cdp/network/requests.jsonl | Network.requestWillBeSent | every outgoing request: url, method, headers, postData, requestId |
cdp/network/responses.jsonl | Network.responseReceived | response status, headers, mimeType, remoteIPAddress, fromDiskCache |
cdp/network/finished.jsonl | Network.loadingFinished | byte count + timestamp on success |
cdp/network/failed.jsonl | Network.loadingFailed | errorText (e.g. net::ERR_ABORTED), canceled |
cdp/network/websocket.jsonl | Network.webSocket* | every WebSocket lifecycle event |
cdp/console/logs.jsonl | Runtime.consoleAPICalled | console.log/info/warn/error with args[] |
cdp/console/exceptions.jsonl | Runtime.exceptionThrown | unhandled JS errors with stack |
cdp/runtime/all.jsonl | Runtime.* | execution-context create/destroy, binding calls, etc. |
cdp/log/entries.jsonl | Log.entryAdded | browser-level warnings (CSP, deprecation, mixed content) |
cdp/page/navigations.jsonl | Page.frameNavigated | each top-level + iframe navigation |
cdp/page/lifecycle.jsonl | Page.lifecycleEvent | per-navigation milestones: init, commit, DOMContentLoaded, load, firstPaint, firstContentfulPaint, firstMeaningfulPaint, networkAlmostIdle, networkIdle |
cdp/page/frames.jsonl | Page.frame* | frame attached/detached/started/stoppedLoading |
cdp/page/dialogs.jsonl | Page.javascriptDialog* | alert / confirm / prompt / beforeunload |
cdp/page/all.jsonl | Page.* | catch-all for everything Page emits |
cdp/dom/all.jsonl | DOM.* | tree mutations (only populated if O11Y_DOMAINS adds DOM) |
cdp/target/attached.jsonl | Target.attachedToTarget | each new page/iframe target attached to the tracer |
cdp/target/detached.jsonl | Target.detachedFromTarget | each detach |
browse cdp does not embed response bodies in the firehose — that requires a synchronous Network.getResponseBody round-trip per request. If you need bodies, use browse network on (in the browser skill) which writes per-request directories with request.json + response.json including body. The two skills compose: run browse network on for bodies + browse cdp for the timeline.
All recipes assume cd .o11y/<run-id>/cdp for brevity.
# Top hosts by request count
jq -r '.params.request.url' network/requests.jsonl \
| awk -F/ '{print $3}' | sort | uniq -c | sort -rn | head
# All XHR/fetch (exclude subresources)
jq -c 'select(.params.type == "XHR" or .params.type == "Fetch")' \
network/requests.jsonl
# Slow responses (>1000ms) — join finished against requests by requestId
jq -s '
(.[0] | map({(.params.requestId): .params.timestamp}) | add) as $start |
.[1] | map(select(.params.encodedDataLength != null))
| map({
rid: .params.requestId,
dur_ms: ((.params.timestamp - $start[.params.requestId]) * 1000 | floor),
bytes: .params.encodedDataLength
})
| map(select(.dur_ms > 1000))
| sort_by(-.dur_ms)
' network/requests.jsonl network/finished.jsonl
# All POST bodies that aren't form-encoded
jq -c 'select(.params.request.method == "POST")
| {url: .params.request.url, body: .params.request.postData}' \
network/requests.jsonl# Console errors with the originating url+line
jq -r 'select(.params.type == "error")
| "\(.params.stackTrace.callFrames[0].url):\(.params.stackTrace.callFrames[0].lineNumber)\t\(.params.args[0].value // .params.args[0].description // "")"' \
console/logs.jsonl
# Pretty-print every exception
jq -c '.params.exceptionDetails
| {text, line: .lineNumber, url, stack: .stackTrace.callFrames[0:3]}' \
console/exceptions.jsonl# Linear visit log
jq -r '.params.frame.url' page/navigations.jsonl
# Navigations only on the top frame (skip iframes)
jq -r 'select(.params.frame.parentId == null) | .params.frame.url' \
page/navigations.jsonlPage.lifecycleEvent fires per-navigation for init, commit, DOMContentLoaded, load, firstPaint, firstContentfulPaint, firstMeaningfulPaint, networkAlmostIdle, networkIdle. Requires browse cdp ≥ the build that includes stagehand#2056 (opens in a new tab); on older builds lifecycle.jsonl will be empty.
# Time-to-DOMContentLoaded and time-to-load per navigation (seconds since loader start)
jq -s '
group_by(.params.loaderId) | map({
loader: .[0].params.loaderId,
init: (map(select(.params.name == "init")) | first | .params.timestamp // null),
DOMContentLoaded: (map(select(.params.name == "DOMContentLoaded")) | first | .params.timestamp // null),
load: (map(select(.params.name == "load")) | first | .params.timestamp // null),
firstContentfulPaint: (map(select(.params.name == "firstContentfulPaint")) | first | .params.timestamp // null),
networkIdle: (map(select(.params.name == "networkIdle")) | first | .params.timestamp // null)
} | . + {
ttDCL_s: (if .DOMContentLoaded and .init then (.DOMContentLoaded - .init) else null end),
ttLoad_s: (if .load and .init then (.load - .init) else null end),
ttFCP_s: (if .firstContentfulPaint and .init then (.firstContentfulPaint - .init) else null end),
ttIdle_s: (if .networkIdle and .init then (.networkIdle - .init) else null end)
})
' page/lifecycle.jsonlindex.jsonl (sibling of cdp/) holds the sampler index. To find the screenshot closest to a CDP event timestamp:
# Pick an exception timestamp (Runtime.exceptionThrown uses .params.timestamp in ms)
EVT_MS=$(jq -r '.params.timestamp' console/exceptions.jsonl | head -1)
EVT_ISO=$(date -u -r $((EVT_MS/1000)) +%Y%m%dT%H%M%SZ)
# Find the first screenshot >= that ISO timestamp
ls ../screenshots | sort | awk -v t="$EVT_ISO" '$0 >= t { print; exit }'For a quick visual diff, open ../dom/<ts>.html at the same timestamp.
When a run was captured through bb-capture.mjs, its manifest.json carries a browserbase block and bb-finalize.mjs adds a browserbase/ subdir. A few useful joins:
RUN=.o11y/<run-id>
# Pull session metadata into context
jq '.browserbase' "$RUN/manifest.json"
# How many bytes did Browserbase's proxy bill us?
jq '.proxyBytes' "$RUN/browserbase/session.json"
# Sum the encoded bytes the tracer saw across responses; compare to proxyBytes.
jq -s 'map(.params.encodedDataLength // 0) | add' \
"$RUN/cdp/network/finished.jsonl"
# Open the live debugger view for an in-flight run
open "$(jq -r '.browserbase.debugger_url' "$RUN/manifest.json")"
# Find every run that touched a particular Browserbase project
grep -lr '"project_id": "5a9c3bfb' .o11y/*/manifest.json
# List of session ids by run
for m in .o11y/*/manifest.json; do
jq -r '"\(.run_id)\t\(.browserbase.session_id // "local")"' "$m"
doneThey’re complementary:
browse cloud sessions debug URL is an interactive Chrome DevTools view served by Browserbase, scoped to one running session. Use when you want to watch a live run, single-step through requests, or inspect the live DOM by hand.You can do both simultaneously: bb-capture.mjs --new prints the debugger URL when it starts, and stamps it in the manifest for later.
browse cloud sessions logs is best-effort; in practice it’s frequently empty even with --log-session on. Don’t build queries on top of it; treat anything that lands there as a bonus.screenshots/ and dom/.browse cloud sessions list doesn’t accept a --status filter; pipe through jq (select(.status == "RUNNING")).browse cloud sessions get returns running proxyBytes; the tracer’s network buckets give you per-host detail to attribute it.The same recipes work scoped to a single page. Replace cdp/<bucket>.jsonl with cdp/pages/<pid>/<bucket>.jsonl, or use query.mjs for the common patterns.
RUN=.o11y/<run-id>
# Browse the page index quickly
jq '.pages | map({pageId, url, durationMs, eventCount})' $RUN/cdp/summary.json
# Pages with the most network errors
jq '.pages | map(select(.domains.Network.errors > 0))
| map({pageId, url, errors: .domains.Network.errors})' \
$RUN/cdp/summary.json
# Pages by event volume (hot pages)
jq '.pages | sort_by(-.eventCount) | .[:5] | map({pageId, url, eventCount})' \
$RUN/cdp/summary.json
# All requests on page 2 grouped by type
jq -r '.params.type' $RUN/cdp/pages/002/network/requests.jsonl \
| sort | uniq -c | sort -rn
# Did page 1 fire firstContentfulPaint?
jq -c 'select(.params.name == "firstContentfulPaint") | .params.timestamp' \
$RUN/cdp/pages/001/page/lifecycle.jsonl
# All POST bodies submitted on page 3
jq -c 'select(.params.request.method == "POST")
| {url: .params.request.url, body: .params.request.postData}' \
$RUN/cdp/pages/003/network/requests.jsonl# Total artifact size
du -sh .o11y/<run-id>
# Every URL ever requested, deduped
jq -r '.params.request.url' .o11y/*/cdp/network/requests.jsonl | sort -u
# Find runs that hit a specific host
grep -lr 'api\.example\.com' .o11y/*/cdp/network/requests.jsonl
# Search DOM dumps for an element class that came and went
rg -l 'class="error-banner"' .o11y/<run-id>/dom/
# Tail the firehose live (re-run start-capture is fine — it appends to raw.ndjson? no, it overwrites)
tail -f .o11y/<run-id>/cdp/raw.ndjson | jq -c '{m:.method, u:.params.request.url // .params.frame.url // ""}'| Var | Default | Effect |
|---|---|---|
O11Y_ROOT | .o11y | base directory under which <run-id>/ is created |
O11Y_DOMAINS | Network Console Runtime Log Page | space-separated CDP domains for the firehose |
BROWSERBASE_API_KEY | — | required for browse cloud sessions create / browse cloud sessions get |
The interval-second arg to start-capture.mjs controls only the sampler. The firehose is always streamed in real time.
| Symptom | Likely cause | Fix |
|---|---|---|
browse cdp exited immediately | unreachable target / completed Browserbase session | verify port is listening (curl http://localhost:9222/json/version) or session is RUNNING (browse cloud sessions get) |
error: unknown command 'cdp' | older browse build lacks the command | npm install -g browse@latest (or the alpha tag if needed) |
| Browserbase session ends as soon as tracer connects | tracer was the only client; no automation attached | create with --keep-alive, attach automation with browse open --cdp <connectUrl> --session <name> first |
index.jsonl shows "url": "" | sampler browse get url failed transiently | benign; happens during navigation transitions |
| Screenshots empty / huge / inconsistent sizes | viewport not set | browse viewport 1920 1080 --cdp <target> once before capture |
raw.ndjson grows but bisect buckets empty | wrong domains; e.g. you wanted DOM but didn’t enable it | O11Y_DOMAINS="Network Console Runtime Log Page DOM" bash start-capture.mjs ... |
| Loop process leaks after crash | stop-capture.mjs not run | pkill -f snapshot-loop.mjs; PID files in <run-dir> are stale |