You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/kitchen-sink.yaml
+22-4Lines changed: 22 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -498,11 +498,29 @@ meter_provider:
498
498
# If omitted or null, trace_based is used.
499
499
exemplar_filter: trace_based
500
500
# Configure text map context propagators.
501
-
# If omitted, tracecontext and baggage are used.
501
+
# If omitted, a noop propagator is used.
502
502
propagator:
503
-
# Configure the set of propagators to include in the composite text map propagator.
504
-
# Built-in values include: tracecontext, baggage, b3, b3multi, jaeger, none. Known third party values include: xray, ottrace. For behavior of values see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration.
# Configure the propagators in the composite text map propagator. Entries from .composite_list are appended to the list here with duplicates filtered out.
504
+
# Built-in propagator keys include: tracecontext, baggage, b3, b3multi, jaeger, ottrace. Known third party keys include: xray.
505
+
# If the resolved list of propagators (from .composite and .composite_list) is empty, a noop propagator is used.
506
+
composite:
507
+
- # Include the w3c trace context propagator.
508
+
tracecontext:
509
+
- # Include the w3c baggage propagator.
510
+
baggage:
511
+
- # Include the zipkin b3 propagator.
512
+
b3:
513
+
- # Include the zipkin b3 multi propagator.
514
+
b3multi:
515
+
- # Include the jaeger propagator.
516
+
jaeger:
517
+
- # Include the opentracing propagator.
518
+
ottrace:
519
+
# Configure the propagators in the composite text map propagator. Entries are appended to .composite with duplicates filtered out.
520
+
# 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.
521
+
# Built-in propagator identifiers include: tracecontext, baggage, b3, b3multi, jaeger, ottrace. Known third party identifiers include: xray.
522
+
# If the resolved list of propagators (from .composite and .composite_list) is empty, a noop propagator is used.
Copy file name to clipboardExpand all lines: examples/sdk-config.yaml
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -35,11 +35,16 @@ attribute_limits:
35
35
# If omitted or null, 128 is used.
36
36
attribute_count_limit: 128
37
37
# Configure text map context propagators.
38
-
# If omitted, tracecontext and baggage are used.
38
+
# If omitted, a noop propagator is used.
39
39
propagator:
40
-
# Configure the set of propagators to include in the composite text map propagator.
41
-
# Built-in values include: tracecontext, baggage, b3, b3multi, jaeger, none. Known third party values include: xray, ottrace. For behavior of values see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration.
42
-
composite: [ tracecontext, baggage ]
40
+
# Configure the propagators in the composite text map propagator. Entries from .composite_list are appended to the list here with duplicates filtered out.
41
+
# Built-in propagator keys include: tracecontext, baggage, b3, b3multi, jaeger, ottrace. Known third party keys include: xray.
42
+
# If the resolved list of propagators (from .composite and .composite_list) is empty, a noop propagator is used.
# Configure the set of propagators to include in the composite text map propagator.
73
-
# Built-in values include: tracecontext, baggage, b3, b3multi, jaeger, none. Known third party values include: xray, ottrace. For behavior of values see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration.
74
-
composite: [ tracecontext, baggage ]
71
+
# Configure the propagators in the composite text map propagator. Entries from .composite_list are appended to the list here with duplicates filtered out.
72
+
# Built-in propagator keys include: tracecontext, baggage, b3, b3multi, jaeger, ottrace. Known third party keys include: xray.
73
+
# If the resolved list of propagators (from .composite and .composite_list) is empty, a noop propagator is used.
74
+
composite: []
75
+
# Configure the propagators in the composite text map propagator. Entries are appended to .composite with duplicates filtered out.
76
+
# 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.
77
+
# Built-in propagator identifiers include: tracecontext, baggage, b3, b3multi, jaeger, ottrace. Known third party identifiers include: xray.
78
+
# If the resolved list of propagators (from .composite and .composite_list) is empty, a noop propagator is used.
Copy file name to clipboardExpand all lines: schema/type_descriptions.yaml
+23-3Lines changed: 23 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@
34
34
propagator: >
35
35
Configure text map context propagators.
36
36
37
-
If omitted, tracecontext and baggage are used.
37
+
If omitted, a noop propagator is used.
38
38
attribute_limits: Configure general attribute limits. See also tracer_provider.limits, logger_provider.limits.
39
39
logger_provider: >
40
40
Configure logger provider.
@@ -125,11 +125,31 @@
125
125
- type: Propagator
126
126
property_descriptions:
127
127
composite: >
128
-
Configure the set of propagators to include in the composite text map propagator.
128
+
Configure the propagators in the composite text map propagator. Entries from .composite_list are appended to the list here with duplicates filtered out.
129
129
130
-
Built-in values include: tracecontext, baggage, b3, b3multi, jaeger, none. Known third party values include: xray, ottrace. For behavior of values see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration.
130
+
Built-in propagator keys include: tracecontext, baggage, b3, b3multi, jaeger, ottrace. Known third party keys include: xray.
131
+
132
+
If the resolved list of propagators (from .composite and .composite_list) is empty, a noop propagator is used.
133
+
composite_list: >
134
+
Configure the propagators in the composite text map propagator. Entries are appended to .composite with duplicates filtered out.
135
+
136
+
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.
137
+
138
+
Built-in propagator identifiers include: tracecontext, baggage, b3, b3multi, jaeger, ottrace. Known third party identifiers include: xray.
139
+
140
+
If the resolved list of propagators (from .composite and .composite_list) is empty, a noop propagator is used.
131
141
path_patterns:
132
142
- .propagator
143
+
- type: CompositePropagator
144
+
property_descriptions:
145
+
tracecontext: Include the w3c trace context propagator.
0 commit comments