diff --git a/public/dashboard.html b/public/dashboard.html index f68be3a..90c033d 100644 --- a/public/dashboard.html +++ b/public/dashboard.html @@ -39,9 +39,18 @@
| Time | Endpoint | Model | Status | -In | Out | Duration | +Time | +Session | +Endpoint | Model | Status | +In | +New | +Out | +Idle | +Probes | +Duration | ||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ${open ? '▾' : '▸'} | ${escapeHtml(r.timestamp)} | +${r.session_id ? `${escapeHtml(r.session_id.slice(0,8))}` : '—'} | ${escapeHtml(r.endpoint)} | ${escapeHtml(model)} | -${r.status_code} | -${r.input_tokens} | -${r.output_tokens} | +${r.status_code}${r.failure_kind ? ` ${escapeHtml(r.failure_kind)} ` : ''} |
+ ${formatInput(r)} | +${compactTokens(r.cache_creation_input_tokens ?? 0)} | +${formatOutput(r)} | +${formatIdle(r)} | +${r.keepalive_probes ?? '—'} | ${r.duration}s | |||||
| ${detail} | |||||||||||||||||||
| ${detail} | |||||||||||||||||||