From b19fd2713f606c1047f9de651cf030f0ce5645c2 Mon Sep 17 00:00:00 2001 From: Brett Blue Date: Mon, 6 Jan 2025 08:21:07 -0700 Subject: [PATCH] Replace dynamically populated endpoint with placeholder. Shortcode is nested too deep inside site-region. --- content/en/opentelemetry/otlp_logs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/opentelemetry/otlp_logs.md b/content/en/opentelemetry/otlp_logs.md index 9ec4341a417dc..0c2da213ed597 100644 --- a/content/en/opentelemetry/otlp_logs.md +++ b/content/en/opentelemetry/otlp_logs.md @@ -37,7 +37,7 @@ If you are using [OpenTelemetry automatic instrumentation][3], set the following ```shell export OTEL_EXPORTER_OTLP_LOGS_PROTOCOL="http/protobuf" -export OTEL_EXPORTER_OTLP_LOGS_ENDPOINT="{{< region-param key="otlp_logs_endpoint" >}}" +export OTEL_EXPORTER_OTLP_LOGS_ENDPOINT="${YOUR_ENDPOINT}" // Replace this with the correct endpoint export OTEL_EXPORTER_OTLP_LOGS_HEADERS="dd-protocol=otlp,dd-api-key=${DD_API_KEY}" ``` @@ -91,7 +91,7 @@ Configure your `config.yaml` like this: ```yaml exporters: otlphttp: - logs_endpoint: {{< region-param key="otlp_logs_endpoint" >}} + logs_endpoint: ${YOUR_ENDPOINT} // Replace this with the correct endpoint headers: dd-protocol: "otlp" dd-api-key: ${env:DD_API_KEY}