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

    Type Alias ThrottleResult

    Result of a single shouldThrottleEvent call: whether the event should be dropped, the fuzzy cluster key it was bucketed into, and the state transition (if any) that the caller may want to surface as a log.

    type ThrottleResult = {
        errorKey: FuzzyIndexKey | undefined;
        shouldThrottle: boolean;
        transition: ThrottleTransition;
    }
    Index

    Properties

    errorKey: FuzzyIndexKey | undefined

    Undefined when throttling is disabled (the event isn't bucketed).

    shouldThrottle: boolean
    transition: ThrottleTransition