@pwngh/economy-lab
    Preparing search index...

    Type Alias RetryExhaustionFinding

    What detectRetryExhaustion found: exhausted retry budgets over the window.

    type RetryExhaustionFinding = {
        byEngine: Readonly<Record<string, number>>;
        exhausted: number;
        signature: "retry-exhaustion";
        windowMs: number;
    }
    Index
    byEngine: Readonly<Record<string, number>>

    Exhaustions tallied per engine tag; untagged signals tally under unknown.

    exhausted: number

    Submits that failed to their callers after every retry.

    signature: "retry-exhaustion"
    windowMs: number