Debugging session.db and the telemetry pipeline. Use when inspecting a session ledger, diagnosing missing telemetry, or correlating events across tables.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
Debugging session.db and the telemetry pipeline. Use when inspecting a session ledger, diagnosing missing telemetry, or correlating events across tables.
Session Database Debugging
Every Capsem VM session produces a SQLite database at ~/.capsem/run/sessions/<id>/session.db with ledger tables capturing telemetry. A global ~/.capsem/sessions/main.db aggregates stats across sessions.
Session identity invariant
<id> is the opaque VM/session id used for route paths, DB-handle keys,
session-directory names, CAPSEM_VM_ID, and UI tab routing. Human names such
as co-work1 or code-vm1 are display aliases only and must live in name
fields. User surfaces may accept a name (capsem resume co-work1), but they
must translate it to the VM id before calling /vms/{id}/.... Never use a
persistent registry name as SandboxInfo.id, never look up telemetry routes
with registry.get(&id) unless the id has first been resolved to the registry
key, and never key session_db_handles by display name.
If a UI shows telemetry for the wrong provider/model, check this boundary
first: /vms/list and /vms/{id}/info must expose id = session id and
name = display name, and /vms/{id}/stats/detail must open the DB under the
resolved session directory for that id. A session named co-work1 showing
another session's ollama rows while its own DB has AGY/Google rows is a route
identity bug until proven otherwise.
Output columns: ID, Created (MM-DD HH:MM:SS), Duration, Cost, net events, tokens (in+out), tool calls, MCP calls, fs events. Sessions with * after the ID still have a session.db on disk (queryable).
Stats come from the main.db rollup, so they're always available even after the session DB is vacuumed.
Deep inspection
python3 scripts/check_session.py # Full integrity check on latest session
python3 scripts/check_session.py <id> # Specific session (use full ID from list)
python3 scripts/check_session.py -n 10 # Show 10 preview rows per table
Checks: table existence, row counts, tool lifecycle integrity (orphaned tool_calls/tool_responses), AI provider correlation (net_events vs model_calls), NULL detection in critical fields, and optional MCP transport correlation.
Session database tables (session.db)
The model/tool contract is intentionally one ledger:
model_calls is one row per model exchange: request sent to the provider and response received from it.
model_items is the ordered item ledger for request, reasoning/thinking, response, tool_call, and tool_response content inside those exchanges.
tool_calls is the canonical user/security tool-call ledger for all origins (native, mcp, builtin, local). User-facing tool counts and CEL tool evidence come from this table.
tool_responses records tool result content sent back to a model. A response row must match a tool_calls.call_id in the same trace.
MCP protocol facts are typed security events. MCP-origin tools/call activity must appear in tool_calls with origin = 'mcp'.
One model_calls.id can emit many tool_calls.call_id values. The tool response must reuse the same call_id; MCP can enrich that same logical call, but it does not create a second product ledger.
Identity Graph
Use this graph when correlating model, tool, and security rows:
event_id identifies one emitted ledger event row. Security rows, body blobs,
and event detail routes join back through this id.
trace_id groups runtime work caused by one causal operation across tables:
HTTP, DNS, model, tool, file, process, credentials, and security.
turn_id groups all work caused by one user-visible agent turn: the user's
input, every provider exchange needed to answer it, every tool request and
response, and every emitted HTTP/DNS/file/process/security row caused by it.
model_call_id is the model_calls.id value for exactly one provider
request/response exchange inside a turn. It owns that exchange's request,
reasoning/thinking, response, model-emitted tool-call items, token counts, and
provider metadata. It is not the whole user turn; a single turn_id can
contain multiple model_call_id values.
tool_call_id identifies one logical tool invocation across model-native
tools, MCP transport, Capsem built-ins, and local tools. In SQLite it is stored
as tool_calls.call_id and tool_responses.call_id.
Provider response ids, message ids, and transport request ids are provider or
transport metadata. They are not Capsem's join contract.
One turn_id is the user-input scope. It can contain multiple
model_call_id values when an agent calls the model, executes tools, then calls
the model again with tool results. One model_call_id is one provider-exchange
scope and carries that exchange's request, reasoning/thinking, response, token
counts, and ordered model_items. It can emit zero or more tool_call_id
values; this is the canonical one-to-many relationship for model-visible tools.
Stated as the debugging invariant: one model_call_id can emit N
tool_call_id values, and each emitted tool response must reuse that
tool_call_id.
A tool response must carry the same tool_call_id as the tool request.
MCP is not a second user-facing tool ledger. MCP-origin tools/call activity
must resolve to a tool_calls row with origin = 'mcp' or enrich an existing
logical tool_call_id. An MCP call observed without a corresponding logical
tool call is an integrity/security finding, not a separate product counter.
Key cardinalities:
One session has many trace_id values.
One trace_id has one or more turn_id values.
One turn_id has one or more model_call_id values.
One model_call_id has one provider request and one provider response.
One model_call_id has many model_items rows: request, reasoning,
response, tool_call, and tool_response items in observed order.
One model_call_id can emit many tool_call_id values.
One tool_call_id has one tool request and zero or more observed response
rows, all with the same tool_call_id.
One event_id identifies one emitted row and joins its security, body, and
display details.
net_events -- one row per HTTP request through MITM proxy
CREATE TABLE net_events (
id INTEGERPRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL, -- RFC 3339
domain TEXT NOT NULL, -- "api.anthropic.com"
port INTEGERDEFAULT443,
decision TEXT NOT NULL, -- "allowed" or "denied"
process_name TEXT, -- "claude", "node", "python3"
pid INTEGER,
method TEXT, -- "POST", "GET"
path TEXT, -- "/v1/messages"
query TEXT, -- URL query string
status_code INTEGER, -- 200, 403, etc.
bytes_sent INTEGERDEFAULT0,
bytes_received INTEGERDEFAULT0,
duration_ms INTEGERDEFAULT0,
matched_rule TEXT, -- which policy rule matched
request_headers TEXT, -- JSON (allowlisted verbatim, others hashed)
response_headers TEXT,
request_body_preview TEXT, -- compact display field only
response_body_preview TEXT,
conn_type TEXT DEFAULT'https'
);
model_calls -- one row per AI API request+response cycle
CREATE TABLE model_calls (
id INTEGERPRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
provider TEXT NOT NULL, -- "anthropic", "openai", "google"
model TEXT, -- "claude-sonnet-4-20250514", "gpt-4o"
process_name TEXT,
pid INTEGER,
method TEXT NOT NULL, -- "POST"
path TEXT NOT NULL, -- "/v1/messages"
stream INTEGERDEFAULT0, -- 1 if SSE streaming
system_prompt_preview TEXT,
messages_count INTEGERDEFAULT0,
tools_count INTEGERDEFAULT0,
request_bytes INTEGERDEFAULT0,
request_body_preview TEXT, -- compact display field only
message_id TEXT, -- "msg_..." (Anthropic), "chatcmpl-..." (OpenAI)
status_code INTEGER,
text_content TEXT, -- full response text
thinking_content TEXT, -- thinking/reasoning text
stop_reason TEXT, -- "end_turn", "tool_use", "stop", "STOP"
input_tokens INTEGER,
output_tokens INTEGER,
duration_ms INTEGERDEFAULT0,
response_bytes INTEGERDEFAULT0,
estimated_cost_usd REALDEFAULT0,
trace_id TEXT, -- groups tool call chains across turns
usage_details TEXT -- JSON: {"cache_read": N, "thinking": N}
);
Only emitted for actual LLM API paths (/v1/messages, /v1/chat/completions, /v1beta/models/*/). Health checks, auth endpoints don't create rows.
tool_calls -- canonical tool invocation ledger
CREATE TABLE tool_calls (
id INTEGERPRIMARY KEY AUTOINCREMENT,
event_id TEXT NOT NULL, -- 12 hex charstimestamp TEXT NOT NULL,
model_call_id INTEGER, -- model_calls.id that emitted the tool call when model-visible
provider TEXT NOT NULL,
status TEXT NOT NULL, -- "requested", "observed", "responded", "error"
call_index INTEGERNOT NULL, -- position in response
call_id TEXT NOT NULL, -- "toolu_..." (Anthropic), "call_..." (OpenAI)
tool_name TEXT NOT NULL,
arguments TEXT, -- JSON string
response_preview TEXT,
origin TEXT NOT NULLDEFAULT'native', -- "native", "mcp", "builtin", or "local"
server_name TEXT,
method TEXT,
request_id TEXT,
decision TEXT NOT NULL,
duration_ms INTEGERDEFAULT0,
error_message TEXT,
process_name TEXT,
bytes_sent INTEGERDEFAULT0,
bytes_received INTEGERDEFAULT0,
policy_mode TEXT,
policy_action TEXT,
policy_rule TEXT,
policy_reason TEXT,
trace_id TEXT,
credential_ref TEXT
);
For model-emitted tool calls, model_call_id points to the model exchange
whose response emitted that tool call. It is not a trace-level guess.
tool_responses -- results sent back for tool calls
CREATE TABLE tool_responses (
id INTEGERPRIMARY KEY AUTOINCREMENT,
model_call_id INTEGERNOT NULL, -- model_calls.id whose request consumed the tool result
call_id TEXT NOT NULL, -- matches tool_calls.call_id
content_preview TEXT,
is_error INTEGERDEFAULT0,
trace_id TEXT,
credential_ref TEXT
);
tool_responses.model_call_id points to the later model exchange that carried
the tool result back to the model. The same call_id must match a
tool_calls.call_id in the same trace.
MCP initialize/list/resource protocol evidence is available through
security_rule_events.event_json. Use tool_calls for product/user/security
tool activity.
Full HTTP/model/MCP request and response bodies live in event_body_blobs,
keyed by event_id, source_table, and direction. When debugging payload
content, query that table first; preview columns are for fast UI scans and are
not the forensic source of truth.
fs_events -- filesystem changes in guest workspace
CREATE TABLE fs_events (
id INTEGERPRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
action TEXT NOT NULL, -- "created", "modified", "deleted"
path TEXT NOT NULL, -- relative to workspace root
size INTEGER-- bytes (NULL for deletes)
);
Main database (main.db)
Global rollup at ~/.capsem/sessions/main.db. Key tables:
sessions -- one row per session: id, mode, status, timestamps, aggregated counts (total_requests, allowed/denied, tokens, cost, tool_calls, file_events)
tool_usage -- per-session per-tool aggregates from the canonical tool ledger
mcp_usage -- per-session MCP transport aggregates when protocol frames are visible
Rollup happens when a session ends.
Common debugging scenarios
Missing net_events
Guest didn't make HTTPS requests, or VM shut down before proxy flushed
Check: just exec 'curl -s https://api.anthropic.com/ && sleep 1' then inspect
model_calls has NULL model or NULL tokens
Gzip bug: response was gzip-compressed and proxy didn't decompress before SSE parsing. Check if Accept-Encoding: gzip was sent and Content-Encoding: gzip was in response.
Non-streaming: for non-streaming responses, tokens come from response JSON, not SSE. Check if stream=0.
Provider mismatch: check if the URL path was detected as the right provider. Model resolution: request body > SSE stream > response JSON > URL path.
tool_calls without matching tool_responses
The model invoked a tool but the next turn's tool results weren't captured
Check if the VM session ended before the tool result was sent back
The inspect output now includes a tool usage breakdown from tool_calls plus MCP transport evidence when present. Check it after MCP changes to verify user tools return allowed with reasonable latency and that MCP-origin rows link back to protocol evidence when available.
Ad-hoc SQL queries
Use sqlite3 "$HOME/.capsem/sessions/<id>/session.db" to run SQL against session DBs. Auto-selects the latest non-vacuumed session with a DB on disk. Pass a session ID as second argument to target a specific session.
# Decisions breakdown
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT decision, COUNT(*) FROM net_events GROUP BY decision"# Token totals by provider
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT provider, SUM(input_tokens) as in_tok, SUM(output_tokens) as out_tok, SUM(estimated_cost_usd) as cost FROM model_calls GROUP BY provider"# Find orphaned tool calls
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT tc.call_id, tc.tool_name FROM tool_calls tc LEFT JOIN tool_responses tr ON tc.call_id = tr.call_id WHERE tr.id IS NULL"# MCP-origin user tool usage breakdown (snapshot, http, etc.)
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT tool_name, decision, COUNT(*) as cnt, ROUND(AVG(duration_ms),1) as avg_ms FROM tool_calls WHERE origin = 'mcp' AND tool_name IS NOT NULL GROUP BY tool_name, decision ORDER BY cnt DESC"# MCP-origin tool usage breakdown
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT method, tool_name, decision, COUNT(*) as cnt FROM tool_calls WHERE origin = 'mcp' GROUP BY method, tool_name, decision ORDER BY cnt DESC"# Check fs_events actions
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT action, COUNT(*) FROM fs_events GROUP BY action"# Trace a tool call chain
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT id, model, stop_reason, trace_id FROM model_calls WHERE trace_id = '<trace_id>' ORDER BY timestamp"# Query a specific session (use full ID from python3 scripts/list_sessions.py)
sqlite3 "$HOME/.capsem/sessions/<id>/session.db""SELECT COUNT(*) FROM net_events" 20260327-154418-f907
Tip: use python3 scripts/list_sessions.py --with-db --with-model to find sessions worth querying.