MonoCloud Management SDK
    Preparing search index...

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

    LogRequest

    interface LogRequest {
        certificate_issuer?: string | null;
        certificate_subject?: string | null;
        is_mtls: boolean;
        is_spiffe: boolean;
        location?: LogLocation | null;
        remote_ip?: LogIpDetails | null;
        san_uris?: string[] | null;
        spiffe_id?: string | null;
        trace_id?: string | null;
        trust_store_id?: string | null;
        user_agent?: string | null;
    }
    Index

    Properties

    certificate_issuer?: string | null

    The issuer of the client certificate used in the request.

    LogRequest

    certificate_subject?: string | null

    The subject of the client certificate used in the request.

    LogRequest

    is_mtls: boolean

    Specifies whether the request was a mTLS request.

    LogRequest

    is_spiffe: boolean

    Specifies whether the request was authenticated with a SPIFFE SVID.

    LogRequest

    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

    san_uris?: string[] | null

    The SAN URIs of the client certificate used in the request.

    LogRequest

    spiffe_id?: string | null

    The SPIFFE ID of the SVID (X.509-SVID or JWT-SVID) that authenticated the request.

    LogRequest

    trace_id?: string | null

    The trace identifier of the request.

    LogRequest

    trust_store_id?: string | null

    The id of the trust store used to authenticate the request.

    LogRequest

    user_agent?: string | null

    The user agent associated with the request.

    LogRequest