File size: 21,836 Bytes
7c5ed63 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 | // apps/vis/web/src/lib/analysis.ts
//
// Fold a flat wire timeline into the agent's natural execution structure —
// turns → steps → tool calls — and derive the metrics a data-analysis view
// needs but the raw record list does not surface:
// - per-turn / per-step / per-tool wall-clock duration (from record `time`)
// - per-turn token cost (sum of step usages) and cache-hit rate
// - context-window fill over time (mirrors the engine's snapshot formula)
// - tool-result truncation / size / error flags
// - tool usage stats (count, error rate, latency)
// - idle gaps (large wall-clock gaps between records → waiting)
//
// Pure: consumes the same `WireEntry[]` the Wire tab already fetches, so the
// Timeline view needs no extra server round-trip.
import type { TokenUsage, WireEntry } from '../types';
export interface ContentSummary {
textChars: number;
thinkChars: number;
}
export interface ToolCallNode {
callLineNo: number;
toolCallId: string;
name: string;
description?: string;
callTime?: number;
resultLineNo?: number;
resultTime?: number;
/** resultTime − callTime, when both are known. */
durationMs?: number;
isError?: boolean;
truncated?: boolean;
/** Approximate byte size of the tool result output. */
outputBytes?: number;
/** Optional human-readable side-channel message on the result. */
resultMessage?: string;
}
export interface StepNode {
uuid: string;
step: number;
turnId: string;
beginLineNo: number;
beginTime?: number;
endLineNo?: number;
endTime?: number;
durationMs?: number;
finishReason?: string;
isError?: boolean;
usage?: TokenUsage;
/** Context-window fill after this step (the engine's snapshot formula). */
contextTokens?: number;
llmFirstTokenLatencyMs?: number;
llmStreamDurationMs?: number;
/** TTFT split: client-side request-build vs. network + API-server time. */
llmRequestBuildMs?: number;
llmServerFirstTokenMs?: number;
/** Decode split: server time awaiting parts vs. client time processing them. */
llmServerDecodeMs?: number;
llmClientConsumeMs?: number;
llmClientBlockedMs?: number;
content: ContentSummary;
toolCalls: ToolCallNode[];
}
export interface TurnNode {
index: number;
/** 'prompt' | 'steer' — how the turn was kicked off. */
trigger: 'prompt' | 'steer';
promptLineNo: number;
promptTime?: number;
promptText: string;
originKind?: string;
steps: StepNode[];
startTime?: number;
endTime?: number;
/** Engine-reported duration, or endTime − startTime for legacy wires. */
durationMs?: number;
/** promptTime − previous turn's endTime (time the agent sat idle/waiting). */
waitBeforeMs?: number;
/** Durable turn identity, available once `turn.ended` is recorded. */
turnId?: number;
endLineNo?: number;
outcome?: 'completed' | 'cancelled' | 'failed' | 'blocked';
stopReason?: string;
/** Sum of this turn's step usages — total tokens processed (billing cost). */
tokens: TokenUsage;
toolCallCount: number;
toolErrorCount: number;
cancelled: boolean;
}
export interface ContextPoint {
lineNo: number;
time?: number;
turnIndex: number;
step: number;
contextTokens: number;
}
export interface ToolStat {
name: string;
count: number;
errorCount: number;
truncatedCount: number;
/** Number of calls that had both call and result times (so durationMs). */
timedCount: number;
totalMs: number;
avgMs: number | null;
maxMs: number | null;
totalOutputBytes: number;
}
export interface IdleGap {
afterLineNo: number;
beforeLineNo: number;
gapMs: number;
/** Heuristic label for what the gap represents. */
kind: 'between_turns' | 'in_turn';
}
export interface ConfigChange {
lineNo: number;
time?: number;
/** Human-readable field=value pairs that this config.update changed. */
changed: { field: string; value: string }[];
}
export interface CacheStats {
inputOther: number;
inputCacheRead: number;
inputCacheCreation: number;
output: number;
/** cacheRead / (cacheRead + cacheCreation + inputOther). null when no input. */
hitRate: number | null;
}
export interface AnalysisSummary {
turnCount: number;
stepCount: number;
toolCallCount: number;
toolErrorCount: number;
truncatedToolCount: number;
/** Sum of all step usages — total tokens processed across the session. */
totalTokens: number;
/** Latest context-window fill (last step.end snapshot). */
contextTokens: number;
/** Peak context-window fill seen across the session. */
peakContextTokens: number;
/** lastRecordTime − firstRecordTime. */
wallClockMs: number | null;
/** Sum of turn active durations (excludes idle/waiting). */
activeMs: number;
}
export interface Analysis {
turns: TurnNode[];
summary: AnalysisSummary;
contextSeries: ContextPoint[];
cache: CacheStats;
toolStats: ToolStat[];
idleGaps: IdleGap[];
configChanges: ConfigChange[];
}
const ZERO_USAGE: TokenUsage = {
inputOther: 0,
output: 0,
inputCacheRead: 0,
inputCacheCreation: 0,
};
/** Idle gaps shorter than this are noise; only larger ones get surfaced. */
const IDLE_GAP_MS = 3000;
function addUsage(into: TokenUsage, u: TokenUsage): void {
into.inputOther += u.inputOther;
into.output += u.output;
into.inputCacheRead += u.inputCacheRead;
into.inputCacheCreation += u.inputCacheCreation;
}
function usageTotal(u: TokenUsage): number {
return u.inputOther + u.output + u.inputCacheRead + u.inputCacheCreation;
}
/** Context-window fill after a step, mirroring the engine's token counting. */
function contextFill(u: TokenUsage): number {
return u.inputCacheRead + u.inputCacheCreation + u.inputOther + u.output;
}
function firstText(input: readonly unknown[] | undefined): string {
if (!input) return '';
for (const part of input) {
if (part && typeof part === 'object' && (part as { type?: string }).type === 'text') {
return (part as { text?: string }).text ?? '';
}
}
return '';
}
function outputSize(output: unknown): number {
if (typeof output === 'string') return output.length;
if (Array.isArray(output)) {
let n = 0;
for (const part of output) {
const candidate = part as { text?: string; think?: string } | undefined;
const text = candidate?.text ?? candidate?.think;
n += typeof text === 'string' ? text.length : JSON.stringify(part ?? null).length;
}
return n;
}
return 0;
}
export function analyzeWire(entries: readonly WireEntry[]): Analysis {
const turns: TurnNode[] = [];
const contextSeries: ContextPoint[] = [];
const toolStatMap = new Map<string, ToolStat>();
const idleGaps: IdleGap[] = [];
const stepByUuid = new Map<string, StepNode>();
const toolByCallId = new Map<string, ToolCallNode>();
const cache: TokenUsage = { ...ZERO_USAGE };
const configChanges: ConfigChange[] = [];
let current: TurnNode | null = null;
let pendingSteer: {
lineNo: number;
time: number | undefined;
text: string;
originKind: string | undefined;
} | null = null;
let contextTokens = 0;
let peakContext = 0;
let firstTime: number | undefined;
let lastTime: number | undefined;
let prevTime: number | undefined;
let prevLineNo = 0;
const startTurn = (trigger: 'prompt' | 'steer', lineNo: number, time: number | undefined, text: string, originKind: string | undefined): TurnNode => {
const node: TurnNode = {
index: turns.length,
trigger,
promptLineNo: lineNo,
promptTime: time,
promptText: text,
originKind,
steps: [],
tokens: { ...ZERO_USAGE },
toolCallCount: 0,
toolErrorCount: 0,
cancelled: false,
};
if (time !== undefined && current?.endTime !== undefined) {
node.waitBeforeMs = Math.max(0, time - current.endTime);
}
turns.push(node);
return node;
};
for (const entry of entries) {
const rec = entry.data;
const t = rec.time;
if (t !== undefined) {
firstTime ??= t;
lastTime = t;
if (prevTime !== undefined && t - prevTime >= IDLE_GAP_MS) {
idleGaps.push({
afterLineNo: prevLineNo,
beforeLineNo: entry.lineNo,
gapMs: t - prevTime,
// A gap straddling a turn boundary is "waiting for the user"; a gap
// inside a turn is the agent/tool being slow.
kind:
rec.type === 'turn.prompt' ||
(rec.type === 'turn.steer' &&
(current === null || current.outcome !== undefined))
? 'between_turns'
: 'in_turn',
});
}
prevTime = t;
prevLineNo = entry.lineNo;
}
switch (rec.type) {
case 'turn.prompt':
pendingSteer = null;
current = startTurn('prompt', entry.lineNo, t, firstText(rec.input), rec.origin?.kind);
break;
case 'turn.steer':
if (current === null || current.outcome !== undefined) {
pendingSteer = null;
current = startTurn('steer', entry.lineNo, t, firstText(rec.input), rec.origin?.kind);
} else {
pendingSteer = {
lineNo: entry.lineNo,
time: t,
text: firstText(rec.input),
originKind: rec.origin?.kind,
};
}
break;
case 'turn.cancel':
if (
current !== null &&
rec.target !== 'queued' &&
(rec.turnId === undefined || current.turnId === undefined || current.turnId === rec.turnId)
) {
current.cancelled = true;
}
break;
case 'turn.ended':
if (current !== null) {
current.turnId = rec.turnId;
current.endLineNo = entry.lineNo;
current.outcome = rec.reason;
current.stopReason = rec.stopReason;
current.cancelled ||= rec.reason === 'cancelled';
if (t !== undefined) current.endTime = t;
if (rec.durationMs !== undefined) current.durationMs = rec.durationMs;
}
break;
case 'context.update_token_count':
contextTokens = rec.tokenCount;
contextSeries.push({
lineNo: entry.lineNo,
time: t,
turnIndex: current?.index ?? -1,
step: -1,
contextTokens,
});
if (contextTokens > peakContext) peakContext = contextTokens;
break;
case 'token_counting.measured':
case 'token_counting.truncated':
case 'token_counting.rebased':
case 'token_counting.turn_recorded':
// v2's replacement for `context.update_token_count`: the record's
// `tokens` is the agent's current context-window fill.
contextTokens = rec.tokens;
contextSeries.push({
lineNo: entry.lineNo,
time: t,
turnIndex: current?.index ?? -1,
step: -1,
contextTokens,
});
if (contextTokens > peakContext) peakContext = contextTokens;
break;
case 'context.clear':
contextTokens = 0;
break;
case 'context.apply_compaction':
// `tokensAfter` is optional in the v2 payload (absent on legacy
// variants) — keep the prior count then.
if (rec.tokensAfter !== undefined) {
contextTokens = rec.tokensAfter;
contextSeries.push({ lineNo: entry.lineNo, time: t, turnIndex: current?.index ?? -1, step: -1, contextTokens });
if (contextTokens > peakContext) peakContext = contextTokens;
}
break;
case 'config.update': {
const cwd = rec.environmentDisclosure?.cwd;
const effort = rec.thinkingEffort ?? rec.thinkingLevel;
const changed: { field: string; value: string }[] = [];
if (rec.profileName !== undefined) changed.push({ field: 'profile', value: rec.profileName });
if (rec.modelAlias !== undefined) changed.push({ field: 'model', value: rec.modelAlias });
if (effort !== undefined) changed.push({ field: 'thinking', value: effort });
if (cwd !== undefined) changed.push({ field: 'cwd', value: cwd });
if (rec.systemPrompt !== undefined) changed.push({ field: 'systemPrompt', value: `${rec.systemPrompt.length} chars` });
if (changed.length > 0) configChanges.push({ lineNo: entry.lineNo, time: t, changed });
break;
}
case 'profile.bind': {
// v2 writes most initial config state on `profile.bind` rather than
// `config.update`.
const changed: { field: string; value: string }[] = [];
if (rec.profileName !== undefined) changed.push({ field: 'profile', value: rec.profileName });
if (rec.modelAlias !== undefined) changed.push({ field: 'model', value: rec.modelAlias });
changed.push({ field: 'thinking', value: rec.thinkingEffort });
if (rec.environmentDisclosure !== undefined) changed.push({ field: 'cwd', value: rec.environmentDisclosure.cwd });
changed.push({ field: 'systemPrompt', value: `${rec.systemPrompt.length} chars` });
configChanges.push({ lineNo: entry.lineNo, time: t, changed });
break;
}
case 'context.append_loop_event': {
const ev = rec.event;
if (ev.type === 'step.begin') {
const parsedTurnId =
ev.turnId === undefined ? undefined : Number.parseInt(ev.turnId, 10);
const validTurnId =
parsedTurnId !== undefined && Number.isInteger(parsedTurnId)
? parsedTurnId
: undefined;
let turn: TurnNode | null = current;
if (
turn === null ||
turn.outcome !== undefined ||
(validTurnId !== undefined &&
turn.turnId !== undefined &&
turn.turnId !== validTurnId)
) {
turn = pendingSteer === null
? startTurn('prompt', entry.lineNo, t, '(no prompt record)', undefined)
: startTurn(
'steer',
pendingSteer.lineNo,
pendingSteer.time,
pendingSteer.text,
pendingSteer.originKind,
);
}
pendingSteer = null;
current = turn;
if (validTurnId !== undefined) {
turn.turnId ??= validTurnId;
}
const step: StepNode = {
uuid: ev.uuid,
// `step` / `turnId` are optional on v2 loop events; fall back so
// the timeline stays numeric for old and new wires alike.
step: ev.step ?? -1,
turnId: ev.turnId ?? '',
beginLineNo: entry.lineNo,
beginTime: t,
content: { textChars: 0, thinkChars: 0 },
toolCalls: [],
};
stepByUuid.set(ev.uuid, step);
turn.steps.push(step);
turn.startTime ??= t;
} else if (ev.type === 'step.end') {
const step = stepByUuid.get(ev.uuid);
if (step) {
step.endLineNo = entry.lineNo;
step.endTime = t;
step.finishReason = ev.finishReason;
step.llmFirstTokenLatencyMs = ev.llmFirstTokenLatencyMs;
step.llmStreamDurationMs = ev.llmStreamDurationMs;
step.llmRequestBuildMs = ev.llmRequestBuildMs;
step.llmServerFirstTokenMs = ev.llmServerFirstTokenMs;
step.llmServerDecodeMs = ev.llmServerDecodeMs;
step.llmClientConsumeMs = ev.llmClientConsumeMs;
step.llmClientBlockedMs = ev.llmClientBlockedMs;
if (step.beginTime !== undefined && t !== undefined) step.durationMs = t - step.beginTime;
step.isError = ev.finishReason === 'filtered' || ev.finishReason === 'error';
if ('usage' in ev && ev.usage !== undefined) {
step.usage = ev.usage;
if (current) addUsage(current.tokens, ev.usage);
addUsage(cache, ev.usage);
// A zero-usage step.end (e.g. a content-filtered response) must
// not reset the context-window fill to 0 — the engine's
// token counting keeps the prior snapshot in that case. Carry the
// running value so the chart shows no false drop.
const fill = contextFill(ev.usage);
if (fill > 0) {
contextTokens = fill;
if (contextTokens > peakContext) peakContext = contextTokens;
}
step.contextTokens = contextTokens;
contextSeries.push({
lineNo: entry.lineNo,
time: t,
turnIndex: current?.index ?? -1,
step: ev.step ?? -1,
contextTokens,
});
}
if (current && t !== undefined) current.endTime = t;
}
} else if (ev.type === 'tool.call') {
const node: ToolCallNode = {
callLineNo: entry.lineNo,
toolCallId: ev.toolCallId,
name: ev.name,
// v2 no longer persists `description`; v1 wires still carry it.
description: (ev as { description?: string }).description,
callTime: t,
};
toolByCallId.set(ev.toolCallId, node);
const step = stepByUuid.get(ev.stepUuid);
(step ? step.toolCalls : current?.steps.at(-1)?.toolCalls)?.push(node);
if (current) current.toolCallCount += 1;
} else if (ev.type === 'content.part') {
const step = stepByUuid.get(ev.stepUuid);
const part = ev.part as { type?: string; text?: string; think?: string } | undefined;
if (step && part) {
if (part.type === 'think') {
step.content.thinkChars += typeof part.think === 'string' ? part.think.length : 0;
} else {
step.content.textChars += typeof part.text === 'string' ? part.text.length : 0;
}
}
} else if (ev.type === 'tool.result') {
const node = toolByCallId.get(ev.toolCallId);
const isError = ev.result.isError === true;
// v1 persisted `truncated` / `message`; v2 persists `note` instead.
const result = ev.result as { truncated?: boolean; message?: string; note?: string };
const truncated = result.truncated === true;
const bytes = outputSize(ev.result.output);
if (node) {
node.resultLineNo = entry.lineNo;
node.resultTime = t;
node.isError = isError;
node.truncated = truncated;
node.outputBytes = bytes;
node.resultMessage = result.message ?? result.note;
if (node.callTime !== undefined && t !== undefined) node.durationMs = t - node.callTime;
if (isError && current) current.toolErrorCount += 1;
recordToolStat(toolStatMap, node);
}
}
break;
}
default:
break;
}
}
// Tool calls that never resolved still count toward stats (no duration).
for (const node of toolByCallId.values()) {
if (node.resultLineNo === undefined) recordToolStat(toolStatMap, node);
}
const summary = summarize(turns, contextTokens, peakContext, firstTime, lastTime);
for (const s of toolStatMap.values()) {
s.avgMs = s.timedCount > 0 ? s.totalMs / s.timedCount : null;
}
const toolStats = [...toolStatMap.values()].toSorted((a, b) => b.count - a.count);
const sortedGaps = idleGaps.toSorted((a, b) => b.gapMs - a.gapMs);
return {
turns,
summary,
contextSeries,
cache: cacheStats(cache),
toolStats,
idleGaps: sortedGaps,
configChanges,
};
}
function recordToolStat(map: Map<string, ToolStat>, node: ToolCallNode): void {
let s = map.get(node.name);
if (!s) {
s = { name: node.name, count: 0, errorCount: 0, truncatedCount: 0, timedCount: 0, totalMs: 0, avgMs: null, maxMs: null, totalOutputBytes: 0 };
map.set(node.name, s);
}
s.count += 1;
if (node.isError) s.errorCount += 1;
if (node.truncated) s.truncatedCount += 1;
if (node.outputBytes !== undefined) s.totalOutputBytes += node.outputBytes;
if (node.durationMs !== undefined) {
s.timedCount += 1;
s.totalMs += node.durationMs;
s.maxMs = s.maxMs === null ? node.durationMs : Math.max(s.maxMs, node.durationMs);
}
}
function summarize(
turns: readonly TurnNode[],
contextTokens: number,
peakContext: number,
firstTime: number | undefined,
lastTime: number | undefined,
): AnalysisSummary {
let stepCount = 0;
let toolCallCount = 0;
let toolErrorCount = 0;
let truncatedToolCount = 0;
let totalTokens = 0;
let activeMs = 0;
for (const turn of turns) {
if (
turn.durationMs === undefined &&
turn.startTime !== undefined &&
turn.endTime !== undefined
) {
turn.durationMs = turn.endTime - turn.startTime;
}
stepCount += turn.steps.length;
toolCallCount += turn.toolCallCount;
toolErrorCount += turn.toolErrorCount;
totalTokens += usageTotal(turn.tokens);
activeMs += turn.durationMs ?? 0;
for (const step of turn.steps) {
for (const tc of step.toolCalls) if (tc.truncated) truncatedToolCount += 1;
}
}
return {
turnCount: turns.length,
stepCount,
toolCallCount,
toolErrorCount,
truncatedToolCount,
totalTokens,
contextTokens,
peakContextTokens: peakContext,
wallClockMs: firstTime !== undefined && lastTime !== undefined ? lastTime - firstTime : null,
activeMs,
};
}
function cacheStats(c: TokenUsage): CacheStats {
const inputTotal = c.inputOther + c.inputCacheRead + c.inputCacheCreation;
return {
inputOther: c.inputOther,
inputCacheRead: c.inputCacheRead,
inputCacheCreation: c.inputCacheCreation,
output: c.output,
hitRate: inputTotal > 0 ? c.inputCacheRead / inputTotal : null,
};
}
|