Skip to content

Commit 1c659ab

Browse files
authored
fix: update OTLP links to location the doc points to (#4670)
## Changes Various places were still linking to `../protocol/otlp.md` which then points people to https://opentelemetry.io/docs/specs/otlp/. This update removes the need for readers to click twice. For non-trivial changes, follow the [change proposal process](https://github.com/open-telemetry/opentelemetry-specification/blob/main/CONTRIBUTING.md#proposing-a-change). * [ ] Related issues # * [ ] Related [OTEP(s)](https://github.com/open-telemetry/oteps) # * [ ] Links to the prototypes (when adding or changing features) * [ ] [`CHANGELOG.md`](https://github.com/open-telemetry/opentelemetry-specification/blob/main/CHANGELOG.md) file updated for non-trivial changes * [ ] [Spec compliance matrix](https://github.com/open-telemetry/opentelemetry-specification/blob/main/spec-compliance-matrix/template.yaml) updated if necessary Signed-off-by: alex boten <[email protected]>
1 parent 0dfa596 commit 1c659ab

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

specification/configuration/sdk-environment-variables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ The implementation MAY accept a comma-separated list to enable setting multiple
307307

308308
Known values for `OTEL_TRACES_EXPORTER` are:
309309

310-
- `"otlp"`: [OTLP](../protocol/otlp.md)
310+
- `"otlp"`: [OTLP](https://opentelemetry.io/docs/specs/otlp/)
311311
- `"zipkin"`: [Zipkin](https://zipkin.io/zipkin-api/) (Defaults to [protobuf](https://github.com/openzipkin/zipkin-api/blob/master/zipkin.proto) format)
312312
- `"console"`: [Standard Output](../trace/sdk_exporters/stdout.md)
313313
- `"logging"`: [Standard Output](../trace/sdk_exporters/stdout.md). It is a deprecated value left for backwards compatibility. It SHOULD
@@ -316,7 +316,7 @@ NOT be supported by new implementations.
316316

317317
Known values for `OTEL_METRICS_EXPORTER` are:
318318

319-
- `"otlp"`: [OTLP](../protocol/otlp.md)
319+
- `"otlp"`: [OTLP](https://opentelemetry.io/docs/specs/otlp/)
320320
- `"prometheus"`: [Prometheus](https://github.com/prometheus/docs/blob/main/docs/instrumenting/exposition_formats.md)
321321
- `"console"`: [Standard Output](../metrics/sdk_exporters/stdout.md)
322322
- `"logging"`: [Standard Output](../metrics/sdk_exporters/stdout.md). It is a deprecated value left for backwards compatibility. It SHOULD
@@ -325,7 +325,7 @@ NOT be supported by new implementations.
325325

326326
Known values for `OTEL_LOGS_EXPORTER` are:
327327

328-
- `"otlp"`: [OTLP](../protocol/otlp.md)
328+
- `"otlp"`: [OTLP](https://opentelemetry.io/docs/specs/otlp/)
329329
- `"console"`: [Standard Output](../logs/sdk_exporters/stdout.md)
330330
- `"logging"`: [Standard Output](../logs/sdk_exporters/stdout.md). It is a deprecated value left for backwards compatibility. It SHOULD
331331
NOT be supported by new implementations.

specification/logs/sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ Concurrent requests and retry logic is the responsibility of the exporter. The
576576
default SDK's `LogRecordProcessors` SHOULD NOT implement retry logic, as the
577577
required logic is likely to depend heavily on the specific protocol and backend
578578
the logs are being sent to. For example,
579-
the [OpenTelemetry Protocol (OTLP) specification](../protocol/otlp.md) defines
579+
the [OpenTelemetry Protocol (OTLP) specification](https://opentelemetry.io/docs/specs/otlp/) defines
580580
logic for both sending concurrent requests and retrying requests.
581581

582582
**Parameters:**

specification/trace/sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ Concurrent requests and retry logic is the responsibility of the exporter. The
10721072
default SDK's Span Processors SHOULD NOT implement retry logic, as the required
10731073
logic is likely to depend heavily on the specific protocol and backend the spans
10741074
are being sent to. For example, the [OpenTelemetry Protocol (OTLP)
1075-
specification](../protocol/otlp.md)
1075+
specification](https://opentelemetry.io/docs/specs/otlp/)
10761076
defines logic for both sending concurrent requests and retrying requests.
10771077

10781078
**Parameters:**

0 commit comments

Comments
 (0)