OpenTelemetry SDK
    Preparing search index...

    Interface PropagatorConfigModel

    Configure text map context propagators. If omitted, a noop propagator is used.

    interface PropagatorConfigModel {
        composite?: TextMapPropagatorConfigModel[];
        composite_list?: string | null;
    }
    Index

    Configure the propagators in the composite text map propagator. Entries from .composite_list are appended to the list here with duplicates filtered out. Built-in propagator keys include: tracecontext, baggage, b3, b3multi. Known third party keys include: xray. If omitted, and .composite_list is omitted or null, a noop propagator is used.

    1

    composite_list?: string | null

    Configure the propagators in the composite text map propagator. Entries are appended to .composite with duplicates filtered out. The value is a comma separated list of propagator identifiers matching the format of OTEL_PROPAGATORS. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration for details. Built-in propagator identifiers include: tracecontext, baggage, b3, b3multi. Known third party identifiers include: xray. If omitted or null, and .composite is omitted or null, a noop propagator is used.