Interface TlsHandshakeFailure

interface TlsHandshakeFailure {
    destination?: Destination;
    failureCause:
        | "closed"
        | "reset"
        | "unknown"
        | "cert-rejected"
        | "no-shared-cipher"
        | "handshake-timeout";
    remoteIpAddress?: string;
    remotePort?: number;
    tags: string[];
    timingEvents: TlsFailureTimingEvents;
    tlsMetadata: TlsSocketMetadata;
}

Hierarchy (view full)

Properties

destination?: Destination
failureCause:
    | "closed"
    | "reset"
    | "unknown"
    | "cert-rejected"
    | "no-shared-cipher"
    | "handshake-timeout"
remoteIpAddress?: string
remotePort?: number
tags: string[]
tlsMetadata: TlsSocketMetadata