From ba183049a555aa5e103ffb63b73c04636af2751c Mon Sep 17 00:00:00 2001 From: Alan West <3676547+alanwest@users.noreply.github.com> Date: Wed, 28 Feb 2024 00:24:18 -0800 Subject: [PATCH] [DOC] Fix OTLP documentation: Default endpoint is wrong for OTLP/HTTP (#2560) --- exporters/otlp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exporters/otlp/README.md b/exporters/otlp/README.md index 6494e01349..812bb8e3c2 100644 --- a/exporters/otlp/README.md +++ b/exporters/otlp/README.md @@ -63,7 +63,7 @@ auto exporter = std::unique_ptr(new otlp::OtlpHttpExport | Option | Env Variable | Default | Description | |--------------------|------------------------------------|---------------------------------|-------------------------------------------------------------------| -|`url` |`OTEL_EXPORTER_OTLP_ENDPOINT` |`http://localhost:4318/v1/traces`| The OTLP HTTP endpoint to connect to | +|`url` |`OTEL_EXPORTER_OTLP_ENDPOINT` |`http://localhost:4318` | The OTLP HTTP endpoint to connect to | | |`OTEL_EXPORTER_OTLP_TRACES_ENDPOINT`| | | |`content_type` | n/a | `application/json` | Data format used - JSON or Binary | |`json_bytes_mapping`| n/a | `JsonBytesMappingKind::kHexId` | Encoding used for trace_id and span_id |