MonoCloud Management SDK
    Preparing search index...

    Log Request Response: Represents request-level metadata associated with the log entry.

    LogRequest

    interface LogRequest {
        location?: LogLocation | null;
        remote_ip?: LogIpDetails | null;
        trace_id?: string | null;
        user_agent?: string | null;
    }
    Index

    Properties

    location?: LogLocation | null

    The geographical location from which the request was made.

    LogRequest

    remote_ip?: LogIpDetails | null

    The remote IP address of the request.

    LogRequest

    trace_id?: string | null

    The trace identifier of the request.

    LogRequest

    user_agent?: string | null

    The user agent associated with the request.

    LogRequest