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

    Interface WatchdogAlert

    interface WatchdogAlert {
        alertId: string;
        alertType:
            | "STUCK_SESSION"
            | "ORPHANED_PROCESS"
            | "CIRCUIT_OPEN"
            | "BACKPRESSURE_EXCEEDED";
        circuitId: string
        | null;
        details: string;
        sessionId: string | null;
        ts: number;
    }
    Index
    alertId: string
    alertType:
        | "STUCK_SESSION"
        | "ORPHANED_PROCESS"
        | "CIRCUIT_OPEN"
        | "BACKPRESSURE_EXCEEDED"
    circuitId: string | null
    details: string
    sessionId: string | null
    ts: number