sentry-vir - v3.2.1
    Preparing search index...

    Type Alias ThrottleOptions

    Throttling options.

    type ThrottleOptions = {
        disableThrottleLog: boolean;
        disableThrottling: boolean;
        thresholdInterval: AnyDuration;
        throttleCooldown: AnyDuration;
        throttleThreshold: number;
    }
    Index

    Properties

    disableThrottleLog: boolean

    Enable a sentry log that indicates that an error is being throttled.

    disableThrottling: boolean
    thresholdInterval: AnyDuration

    When throttling begins, this determines how much time must pass before the error will be logged again.

    throttleCooldown: AnyDuration

    In order for throttling to turn off, the throttle threshold must have not been hit for this entire duration.

    throttleThreshold: number

    If an error is logged this many times within logInterval, it starts getting throttled.