bytebox - v1.0.0
    Preparing search index...

    Interface GateStats

    interface GateStats {
        conflicts: number;
        entered: number;
        outstanding: number;
        peakWaiting: number;
    }
    Index
    conflicts: number

    Calls that arrived while another was outstanding. Zero means nothing ever overlapped.

    entered: number

    Calls that have started running.

    outstanding: number

    Calls queued or running right now.

    peakWaiting: number

    The most that ever queued behind a running call.