featherbit UI
    Preparing search index...

    Interface TraceDetail

    Full trace from GET /api/debug/traces/{id} (and inside a sandbox result).

    interface TraceDetail {
        captured_bodies: boolean;
        duration_us: number;
        error_count: number;
        id: string;
        initial: ContextSnapshot;
        method: string;
        notes: string[];
        path: string;
        policy: string;
        route?: string;
        seq: number;
        source: "request" | "sandbox";
        started_ms: number;
        status: number;
        step_count: number;
        steps: NodeStep[];
    }

    Hierarchy (View Summary)

    Index
    captured_bodies: boolean
    duration_us: number
    error_count: number
    id: string
    method: string
    notes: string[]
    path: string
    policy: string
    route?: string
    seq: number
    source: "request" | "sandbox"
    started_ms: number
    status: number
    step_count: number
    steps: NodeStep[]