OpenTelemetry SDK
    Preparing search index...

    Identifies the Values for NetTransportValues enum definition

    Transport protocol used. See note below.

    Use the NETTRANSPORTVALUES_XXXXX constants rather than the NetTransportValues.XXXXX for bundle minification.

    type NetTransportValues = {
        INPROC: "inproc";
        IP: "ip";
        IP_TCP: "ip_tcp";
        IP_UDP: "ip_udp";
        OTHER: "other";
        PIPE: "pipe";
        UNIX: "unix";
    }
    Index
    INPROC: "inproc"

    In-process communication.

    IP: "ip"

    Another IP-based protocol.

    IP_TCP: "ip_tcp"

    ip_tcp.

    IP_UDP: "ip_udp"

    ip_udp.

    OTHER: "other"

    Something else (non IP-based).

    PIPE: "pipe"

    Named or anonymous pipe. See note below.

    UNIX: "unix"

    Unix Domain socket. See below.