drupflare/worker - v1.0.0
    Preparing search index...

    Type Alias Threshold

    type Threshold = {
        failure: FailureMode;
        free: number | null;
        id: string;
        label: string;
        note: string;
        paid: number | null;
        period: MeterPeriod;
        spentBy: string;
        unmeasurable?: string;
    }
    Index
    failure: FailureMode
    free: number | null

    the free-plan allowance; null when the plan does not meter it

    id: string

    stable id, safe to key a UI row on

    label: string
    note: string

    why it matters, or what it broke

    paid: number | null

    the paid allowance, or null when it is effectively unmetered

    period: MeterPeriod
    spentBy: string

    what spends it, in the site's own terms rather than Cloudflare's

    unmeasurable?: string

    Set when this site STRUCTURALLY cannot count the meter, with the reason.

    Distinct from "not wired yet". A meter nobody has got to invites someone to wire it; a meter that cannot be counted here invites them to produce a confident wrong number instead of finding out why. Naming the reason is what stops that.