Core - v1.0.0
    Preparing search index...

    Interface RequestFacts

    What a runtime knows about a request that the request itself does not say.

    Bayu Dwiyan Satria

    1.0.0

    1.0.0

    interface RequestFacts {
        clientIp: string;
        colo?: string;
        country?: string;
        requestId: string;
    }
    Index
    clientIp: string

    The client's address, or unknown when the runtime does not report one.

    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.

    requestId: string

    Correlation id for everything logged while handling this request.

    A runtime that stamps its own trace id supplies it; otherwise the reader generates one, so this is never empty.