Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface ProductionTrace

    interface ProductionTrace {
        agentId: string;
        agentType: string;
        durationMs: number | null;
        error?: boolean;
        errorMessage?: string;
        input: unknown;
        metadata: Record<string, unknown>;
        output: unknown;
        sessionId?: string;
        spanCount?: number;
        timestamp: number | null;
        traceId: string;
    }
    Index
    agentId: string
    agentType: string
    durationMs: number | null

    Duration of the agent run in ms, or null when the source recorded none. Never a fabricated 0.

    error?: boolean

    Whether the trace ended in error

    errorMessage?: string

    Error message if applicable

    input: unknown

    The input that triggered this trace

    metadata: Record<string, unknown>

    Arbitrary metadata

    output: unknown

    The agent output

    sessionId?: string

    Session/group identifier

    spanCount?: number

    Span count in the trace

    timestamp: number | null

    Source event time in milliseconds, or null when unknown.

    traceId: string