auth.provider API
    Preparing search index...

    Interface ProbeResult

    Outcome of a single probe.

    interface ProbeResult {
        durationMs: number;
        error?: string;
        name: string;
        ok: boolean;
    }
    Index
    durationMs: number

    Wall-clock duration of the probe in milliseconds.

    error?: string

    Failure reason, present only when ok is false.

    name: string
    ok: boolean