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

    Interface Observation

    What the host can see at the end of a request or an alarm.

    Deliberately a flat bag of primitives rather than a live object: a tripwire that holds a reference to the interpreter could keep a poisoned one alive.

    interface Observation {
        asyncifyCalls?: number;
        bytes?: number;
        dbGeneration?: string;
        doRequests?: number;
        doRequestsLimit?: number;
        doRequestsSamples?: number[];
        imageTransforms?: number;
        imageTransformsLimit?: number;
        ledgerRows?: number;
        maskDepth?: number;
        medianBytes?: number;
        memorySamples?: number[];
        migrateChunk?: number;
        migrateChunks?: number;
        packGeneration?: string;
        path?: string;
        rowsWritten?: number;
        rowsWrittenLimit?: number;
        rowsWrittenSamples?: number[];
        semaphoreRows?: number;
        status?: number;
        updbPhase?: string;
    }
    Index
    asyncifyCalls?: number

    globalThis.__cfwAsyncifyCalls; anything above 0 means the stub was reached

    bytes?: number

    byte length of the body it is about to return

    dbGeneration?: string
    doRequests?: number
    doRequestsLimit?: number
    doRequestsSamples?: number[]
    imageTransforms?: number

    Unique image transformations this site's CONFIGURATION implies: styles x images.

    A projection rather than a count, and that is the point -- the meter is a function of content and configuration, both known in advance, so the answer does not have to wait for the failure.

    imageTransformsLimit?: number

    the monthly allowance, when the plan has one

    ledgerRows?: number

    rows in the health ledger itself, so it can police its own growth

    maskDepth?: number

    mask depth at request end; must be 0

    medianBytes?: number

    rolling median byte length for THIS path, if known

    memorySamples?: number[]

    wasm linear memory high-water samples, oldest first

    migrateChunk?: number

    migration cursor state, if a migration exists at all

    migrateChunks?: number
    packGeneration?: string

    generation the packed assets were built for, against the one the database holds

    path?: string

    the path that produced it

    rowsWritten?: number

    free-plan daily meters

    rowsWrittenLimit?: number
    rowsWrittenSamples?: number[]

    the same two meters as rings of readings, oldest first, for the trend checks

    semaphoreRows?: number

    rows in semaphore after the request; must be 0

    status?: number

    HTTP status the object is about to return

    updbPhase?: string

    updb phase, if a run exists