diff --git a/examples/kitchen-sink.yaml b/examples/kitchen-sink.yaml index 203210b..d2c4e84 100644 --- a/examples/kitchen-sink.yaml +++ b/examples/kitchen-sink.yaml @@ -87,6 +87,10 @@ logger_provider: # # Environment variable: OTEL_EXPORTER_OTLP_TIMEOUT, OTEL_EXPORTER_OTLP_LOGS_TIMEOUT timeout: 10000 + # Configure client transport security for the exporter's connection. + # + # Environment variable: OTEL_EXPORTER_OTLP_INSECURE, OTEL_EXPORTER_OTLP_LOGS_INSECURE + insecure: false # Configure log record limits. See also attribute_limits. limits: # Configure max log record attribute value size. Overrides attribute_limits.attribute_value_length_limit. @@ -170,6 +174,10 @@ meter_provider: # # Environment variable: OTEL_EXPORTER_OTLP_TIMEOUT, OTEL_EXPORTER_OTLP_METRICS_TIMEOUT timeout: 10000 + # Configure client transport security for the exporter's connection. + # + # Environment variable: OTEL_EXPORTER_OTLP_INSECURE, OTEL_EXPORTER_OTLP_METRICS_INSECURE + insecure: false # Configure temporality preference. # # Environment variable: OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE @@ -286,6 +294,10 @@ tracer_provider: # # Environment variable: OTEL_EXPORTER_OTLP_TIMEOUT, OTEL_EXPORTER_OTLP_TRACES_TIMEOUT timeout: 10000 + # Configure client transport security for the exporter's connection. + # + # Environment variable: OTEL_EXPORTER_OTLP_INSECURE, OTEL_EXPORTER_OTLP_TRACES_INSECURE + insecure: false # Configure a batch span processor. - batch: # Configure exporter. diff --git a/schema/common.json b/schema/common.json index 55b14f8..48d48a0 100644 --- a/schema/common.json +++ b/schema/common.json @@ -42,6 +42,9 @@ "timeout": { "type": "integer", "minimum": 0 + }, + "insecure": { + "type": "boolean" } }, "required": [ diff --git a/schema/meter_provider.json b/schema/meter_provider.json index 7be98b1..7313ae0 100644 --- a/schema/meter_provider.json +++ b/schema/meter_provider.json @@ -149,6 +149,9 @@ "explicit_bucket_histogram", "base2_exponential_bucket_histogram" ] + }, + "insecure": { + "type": "boolean" } }, "required": [