Core - v1.0.0
    Preparing search index...

    Interface RequestMetric

    One request measurement.

    Bayu Dwiyan Satria

    1.0.0

    1.0.0

    interface RequestMetric {
        colo?: string;
        country?: string;
        durationMs: number;
        method: string;
        route: string;
        status: number;
    }
    Index
    colo?: string

    Point of presence that served the request, where the runtime reports one.

    country?: string

    Country the request came from, where the runtime reports one.

    durationMs: number

    How long the request took, in milliseconds.

    method: string

    HTTP method.

    route: string

    Route or path — the key metrics are grouped by.

    status: number

    Response status.