feat: add developer-mode startup and stack hydration timing (#1619)

* feat: add developer-mode startup and stack hydration timing

Instrument boot-to-list and detail hydration with commit-aligned milestones, truthful request stages, and destination/gateway debug duration logs so performance work is guided by measurements.

* fix: redact stack names and complete hydration request stages

Stop logging stack identifiers in containers debug timing, and record state_dispatch (plus detail fetch spans) so copied reports match the advertised stage breakdown.
This commit is contained in:
Anso
2026-07-14 17:24:25 -04:00
committed by GitHub
parent 4079cb9198
commit b70a529656
26 changed files with 2449 additions and 32 deletions
@@ -1,5 +1,15 @@
import { useState, useEffect, useRef, useMemo, useCallback } from 'react';
import { apiFetch } from '@/lib/api';
import {
newAttemptId,
abortAttempt,
beginSpan,
endSpan,
flushPendingCommit,
markMilestone,
type SpanHandle,
type PendingCommit,
} from '@/lib/hydrationTiming';
import { toast } from '@/components/ui/toast-store';
import { useNodes } from '@/context/NodeContext';
import { useImageUpdates } from '@/hooks/useImageUpdates';
@@ -85,6 +95,13 @@ export function useStackListState() {
// state writes so a rapid node switch cannot leave a stale files/filesNodeId.
const fetchSeqRef = useRef(0);
// Hydration-timing: the current foreground list attempt and the commits it is
// waiting for React to observe. Only foreground loads arm these; background
// refreshes still record diagnostic spans but do not re-commit the milestones.
const listAttemptRef = useRef<string | null>(null);
const listVisiblePendingRef = useRef<PendingCommit | null>(null);
const listHydratedPendingRef = useRef<PendingCommit | null>(null);
// Per-stack terminal failure records driving the in-detail recovery panel.
// In-memory only. Node scoping is enforced by the caller, which clears these
// on active-node change (see EditorLayout's node-switch effect) so a repeated
@@ -196,6 +213,20 @@ export function useStackListState() {
const mySeq = ++fetchSeqRef.current;
const stale = () => fetchSeqRef.current !== mySeq;
// Supersede any in-flight list attempt so a late commit from an interrupted
// load cannot record list_visible / list_hydrated for a stale fetch.
if (listAttemptRef.current) abortAttempt(listAttemptRef.current);
listVisiblePendingRef.current = null;
listHydratedPendingRef.current = null;
const attemptId = newAttemptId();
listAttemptRef.current = attemptId;
// True once the list itself is committed, so the shared catch below can tell
// a list-fetch failure (nothing visible) from a status-path failure (list is
// visible, hydration errored).
let listSucceeded = false;
let proxied = false;
if (!background) setIsLoading(true);
setStacksLoadNodeId(fetchNodeId);
if (!background || !hadSuccessfulListRef.current) {
@@ -203,9 +234,13 @@ export function useStackListState() {
setStacksLoadError(null);
}
const headersSpan = beginSpan('fetch_headers', { attemptId, background });
let bodySpan: SpanHandle | null = null;
try {
const res = await apiFetch('/stacks');
if (stale()) return [];
proxied = res.headers.get('x-sencho-proxy') === '1';
endSpan(headersSpan, { proxied, detail: { status: res.status } });
if (stale()) { abortAttempt(attemptId); return []; }
if (!res.ok) {
const message = `Could not load stacks (${res.status})`;
if (background && hadSuccessfulListRef.current) {
@@ -218,26 +253,51 @@ export function useStackListState() {
setStacksLoadError(message);
return [];
}
bodySpan = beginSpan('body_decode', { attemptId, background, proxied });
const data = await res.json();
endSpan(bodySpan);
bodySpan = null;
const fileList: string[] = Array.isArray(data) ? data : [];
const listDispatch = beginSpan('state_dispatch', { attemptId, background, proxied });
setFiles(fileList);
setFilesNodeId(fetchNodeId);
hadSuccessfulListRef.current = true;
setStacksLoadStatus('success');
setStacksLoadError(null);
endSpan(listDispatch);
listSucceeded = true;
// Token folds node + count so an empty->empty commit still fires once per
// attempt even when the committed `files` is referentially equal.
const listToken = `${fetchNodeId}:${fileList.length}`;
if (!background) {
listVisiblePendingRef.current = { attemptId, token: listToken, proxied };
}
// Fetch all stack statuses in a single bulk call. Only the current object
// format can express `partial`; a node lacking the endpoint or returning
// the legacy plain-string format is re-derived from per-stack containers
// so a crashed container is not hidden behind a healthy sibling.
const statusHeaders = beginSpan('fetch_headers', { attemptId, background, proxied });
const statusRes = await apiFetch('/stacks/statuses');
if (stale()) return fileList;
const statusProxied = statusRes.headers.get('x-sencho-proxy') === '1' || proxied;
endSpan(statusHeaders, { proxied: statusProxied, detail: { status: statusRes.status } });
if (stale()) { abortAttempt(attemptId); return fileList; }
let bulkStatuses: Record<string, StackRowStatus> = {};
const bulkPorts: Record<string, number | undefined> = {};
const bulkSelf: Record<string, boolean> = {};
const bulkCounts: StackCounts = {};
const raw: unknown = statusRes.ok ? await statusRes.json() : null;
let raw: unknown = null;
if (statusRes.ok) {
const statusBodySpan = beginSpan('body_decode', { attemptId, background, proxied: statusProxied });
try {
raw = await statusRes.json();
endSpan(statusBodySpan);
} catch (decodeErr) {
endSpan(statusBodySpan, { outcome: 'error' });
throw decodeErr;
}
}
if (isBulkStatusObjectFormat(raw)) {
for (const [key, val] of Object.entries(raw as Record<string, StackStatusInfo>)) {
bulkStatuses[key] = val.status;
@@ -250,6 +310,7 @@ export function useStackListState() {
} else {
bulkStatuses = await deriveStatusesFromContainers(fileList);
}
const statusDispatch = beginSpan('state_dispatch', { attemptId, background, proxied: statusProxied });
setStackStatuses(prev => {
const next: StackStatus = {};
for (const file of fileList) {
@@ -265,12 +326,24 @@ export function useStackListState() {
});
setStackSelfFlags(bulkSelf);
setStackCounts(bulkCounts);
endSpan(statusDispatch);
refreshLabels();
if (!background) {
listHydratedPendingRef.current = { attemptId, token: listToken, proxied: statusProxied };
}
return fileList;
} catch (error) {
if (stale()) return [];
// endSpan is a no-op when the span was already closed (or never opened).
endSpan(headersSpan, { outcome: 'error' });
if (bodySpan !== null) endSpan(bodySpan, { outcome: 'error' });
if (stale()) { abortAttempt(attemptId); return []; }
console.error('Failed to refresh stacks:', error);
const message = error instanceof Error ? error.message : 'Failed to load stacks';
// The list committed but hydrating its statuses threw: record the list
// path as hydrated-with-error rather than leaving it hanging.
if (listSucceeded && !background) {
markMilestone('list_hydrated', { attemptId, outcome: 'error', proxied });
}
if (background && hadSuccessfulListRef.current) {
setStacksLoadError(message);
return files;
@@ -290,6 +363,20 @@ export function useStackListState() {
const refreshStacksRef = useRef(refreshStacks);
useEffect(() => { refreshStacksRef.current = refreshStacks; });
// Commit-aligned list milestones: fire once React has actually committed the
// file list (list_visible) and the statuses (list_hydrated) for the owning
// attempt. commitMilestone no-ops for a superseded/aborted attempt, so a stale
// load can never complete a session it no longer owns. Empty lists still fire
// via the completion token.
useEffect(() => {
if (stacksLoadStatus !== 'success') return;
flushPendingCommit(listVisiblePendingRef, 'list_visible');
}, [files, filesNodeId, stacksLoadStatus]);
useEffect(() => {
flushPendingCommit(listHydratedPendingRef, 'list_hydrated');
}, [stackStatuses, filesNodeId]);
const handleScanStacks = async () => {
if (isScanning) return;
setIsScanning(true);