OpenTelemetry SDK
    Preparing search index...

    Identifies the Values for HttpFlavorValues enum definition

    Kind of HTTP protocol used.

    Note: If net.transport is not specified, it can be assumed to be IP.TCP except if http.flavor is QUIC, in which case IP.UDP is assumed.

    Use the HTTPFLAVORVALUES_XXXXX constants rather than the HttpFlavorValues.XXXXX for bundle minification.

    type HttpFlavorValues = {
        HTTP_1_0: "1.0";
        HTTP_1_1: "1.1";
        HTTP_2_0: "2.0";
        QUIC: "QUIC";
        SPDY: "SPDY";
    }
    Index
    HTTP_1_0: "1.0"

    HTTP 1.0.

    HTTP_1_1: "1.1"

    HTTP 1.1.

    HTTP_2_0: "2.0"

    HTTP 2.

    QUIC: "QUIC"

    QUIC protocol.

    SPDY: "SPDY"

    SPDY protocol.