bbas-devicer - v0.2.1
    Preparing search index...

    Interface VelocitySignals

    Sliding-window request velocity signals for a single device.

    interface VelocitySignals {
        exceedsThreshold: boolean;
        requestCount: number;
        requestsPerMinute: number;
        windowMs: number;
    }
    Index

    Properties

    exceedsThreshold: boolean

    true when requestCount >= maxRequestsPerWindow.

    requestCount: number

    Number of requests recorded within the measurement window.

    requestsPerMinute: number

    Normalised request rate: requestCount / (windowMs / 60_000).

    windowMs: number

    Length of the sliding window in milliseconds.