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
# Configure the log level of the internal logger used by the SDK.
43
+
# If omitted, info is used.
44
+
log_level: ${OTEL_LOG_LEVEL:-info}
45
+
# Configure resource for all signals.
46
+
# If omitted, the default resource is used.
47
+
resource:
48
+
# Configure resource attributes. Entries have higher priority than entries from .resource.attributes_list.
49
+
# Entries must contain .name and .value, and may optionally include .type. If an entry's .type omitted or null, string is used.
50
+
# The .value's type must match the .type. Values for .type include: string, bool, int, double, string_array, bool_array, int_array, double_array.
51
+
attributes:
52
+
- name: service.name
53
+
value: ${OTEL_SERVICE_NAME:-unknown_service}
54
+
# Configure resource attributes. Entries have lower priority than entries from .resource.attributes.
55
+
# The value is a list of comma separated key-value pairs matching the format of OTEL_RESOURCE_ATTRIBUTES. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration for details.
56
+
# If omitted or null, no resource attributes are added.
57
+
attributes_list: ${OTEL_RESOURCE_ATTRIBUTES}
58
+
# Configure general attribute limits. See also tracer_provider.limits, logger_provider.limits.
# 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.
# Configure headers. Entries have higher priority than entries from .headers_list.
129
+
# If an entry's .value is null, the entry is ignored.
130
+
headers: []
131
+
# Configure headers. Entries have lower priority than entries from .headers.
132
+
# The value is a list of comma separated key-value pairs matching the format of OTEL_EXPORTER_OTLP_HEADERS. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md#configuration-options for details.
# Configure headers. Entries have higher priority than entries from .headers_list.
236
+
# If an entry's .value is null, the entry is ignored.
237
+
headers: []
238
+
# Configure headers. Entries have lower priority than entries from .headers.
239
+
# The value is a list of comma separated key-value pairs matching the format of OTEL_EXPORTER_OTLP_HEADERS. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md#configuration-options for details.
# Values include: cumulative, delta, low_memory. For behavior of values, see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk_exporters/otlp.md.
# Values include: explicit_bucket_histogram, base2_exponential_bucket_histogram. For behavior of values, see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk_exporters/otlp.md.
248
+
# If omitted or null, explicit_bucket_histogram is used.
# Values include: trace_based, always_on, always_off. For behavior of values see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#metrics-sdk-configuration.
# Configure headers. Entries have higher priority than entries from .headers_list.
301
+
# If an entry's .value is null, the entry is ignored.
302
+
headers: []
303
+
# Configure headers. Entries have lower priority than entries from .headers.
304
+
# The value is a list of comma separated key-value pairs matching the format of OTEL_EXPORTER_OTLP_HEADERS. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md#configuration-options for details.
305
+
# If omitted or null, no headers are added.
306
+
headers_list: ${OTEL_EXPORTER_OTLP_LOGS_HEADERS}
307
+
# Configure log record limits. See also attribute_limits.
308
+
limits:
309
+
# Configure max attribute value size. Overrides .attribute_limits.attribute_value_length_limit.
0 commit comments