@eagleoutice/flowr - v2.13.14
    Preparing search index...

    Interface GasThresholdSpec

    Thresholds for one gas dimension, either as one pair for every feature or split per GasFeatureKey:

    timeMs: {
    default: { problematic: 60_000, critical: 120_000 },
    slicer: { problematic: 24_000, critical: 30_000 }
    }

    Per bound, a feature entry wins over default, which wins over the direct pair. A bound nowhere given never triggers.

    interface GasThresholdSpec {
        critical?: number;
        default?: Partial<GasThresholdPair>;
        problematic?: number;
        readonly [feature: string]: number | Partial<GasThresholdPair> | undefined;
    }

    Hierarchy (View Summary)

    Indexable

    Index
    critical?: number

    Shared bound, for every feature without a more specific entry.

    default?: Partial<GasThresholdPair>

    Bounds for the features that have no entry of their own.

    problematic?: number

    Shared bound, for every feature without a more specific entry.