sentry-vir - v4.4.0
    Preparing search index...

    Type Alias ThrottleOptions

    Throttling options.

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

    Properties

    disableThrottleLog: boolean

    Disable the sentry log that fires the first time an error is throttled in an interval.

    disableThrottling: boolean
    thresholdInterval: AnyDuration

    Duration over which up to throttleThreshold events of the same message are allowed.

    throttleThreshold: number

    Within thresholdInterval, if an error message is logged more than this many times, additional events are dropped until the interval rolls over.