Skip to content

Commit f92dd4f

Browse files
authored
[chore] Accessible links 3 (#6051)
Signed-off-by: Josh Soref <[email protected]>
1 parent c8fb161 commit f92dd4f

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

content/en/docs/languages/dotnet/exporters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ var app = builder.Build();
289289
app.UseOpenTelemetryPrometheusScrapingEndpoint();
290290
```
291291

292-
Further details on configuring the Prometheus exporter can be found
293-
[here](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/src/OpenTelemetry.Exporter.Prometheus.AspNetCore/README.md).
292+
For more details on configuring the Prometheus exporter, see
293+
[OpenTelemetry.Exporter.Prometheus.AspNetCore](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/src/OpenTelemetry.Exporter.Prometheus.AspNetCore/README.md).
294294

295295
{{% include "exporters/zipkin-setup.md" %}}
296296

content/en/docs/languages/erlang/instrumentation.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,8 @@ _ = Task.await(task)
200200
### Linking the New Span
201201

202202
A [Span](/docs/concepts/signals/traces/#spans) can be created with zero or more
203-
Span Links that causally link it to another Span. A
204-
[Link](/docs/concepts/signals/traces/#span-links) needs a Span context to be
205-
created.
203+
[Span Links](/docs/concepts/signals/traces/#span-links) that causally link it to
204+
another Span. A Span Link needs a Span context to be created.
206205

207206
{{< tabpane text=true >}} {{% tab Erlang %}}
208207

content/en/docs/languages/js/getting-started/nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ the console.
1313

1414
{{% alert title="Note" color="info" %}} The logging library for OpenTelemetry
1515
for Node.js is still under development hence an example for it is not provided
16-
below. Look [here](/docs/languages/js) for more info about the status of
17-
OpenTelemetry in JavaScript. {{% /alert %}}
16+
below. For status details, see
17+
[Status and Releases](/docs/languages/js/#status-and-releases). {{% /alert %}}
1818

1919
## Prerequisites
2020

content/en/docs/languages/js/resources.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,9 @@ DockerCGroupV1Detector found resource. Resource {
249249
## Next steps
250250
251251
There are more resource detectors you can add to your configuration, for example
252-
to get details about your [Cloud] environment or [Deployment][]. You will find a
253-
list
254-
[here](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node).
252+
to get details about your [Cloud] environment or [Deployment]. For more, see the
253+
complete
254+
[list of detectors](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node).
255255
256256
[getting started - node.js]: /docs/languages/js/getting-started/nodejs/
257257
[process and process runtime resources]: /docs/specs/semconv/resource/process/

content/en/docs/platforms/kubernetes/operator/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ is used. If you need a component not found in these releases, you may need to
8989

9090
For more configuration options and for setting up the injection of
9191
auto-instrumentation of the workloads using OpenTelemetry instrumentation
92-
libraries, continue reading
93-
[here](https://github.com/open-telemetry/opentelemetry-operator/blob/main/README.md).
92+
libraries, see
93+
[OpenTelemetry Operator for Kubernetes](https://github.com/open-telemetry/opentelemetry-operator/blob/main/README.md).

content/en/docs/zero-code/dotnet/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Troubleshooting .NET automatic instrumentation issues
33
linkTitle: Troubleshooting
44
weight: 50
5-
cSpell:ignore: corehost netfx TRACEFILE
5+
cSpell:ignore: corehost netfx pjanotti's TRACEFILE
66
---
77

88
## General steps
@@ -167,7 +167,7 @@ If you are having problems in one of the scenarios above run again the
167167
ensure that the required GAC installations are updated.
168168

169169
For more information about the GAC usage by the automatic instrumentation, see
170-
[here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/1906#issuecomment-1376292814).
170+
[pjanotti's comment](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/1906#issuecomment-1376292814).
171171

172172
See
173173
[#2269](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/2269)

content/en/docs/zero-code/java/spring-boot-starter/other-spring-autoconfig.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ artifact and corresponding exporter autoconfiguration.
2323
If an exporter is present in the classpath during runtime and a spring bean of
2424
the exporter is missing from the spring application context, an exporter bean is
2525
initialized and added to a simple span processor in the active tracer provider.
26-
Check out the implementation
27-
[here](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/OpenTelemetryAutoConfiguration.java).
26+
For more details, see the
27+
[implementation (OpenTelemetryAutoConfiguration.java)](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/OpenTelemetryAutoConfiguration.java).
2828

2929
{{< tabpane text=true >}} {{% tab header="Maven (`pom.xml`)" lang=Maven %}}
3030

content/en/docs/zero-code/js/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ and more.
1717

1818
## SDK and exporter configuration
1919

20-
SDK and exporter configuration can be set using environment variables. More
21-
information can be found [here](/docs/languages/sdk-configuration/).
20+
[SDK and exporter configuration](/docs/languages/sdk-configuration/) can be set
21+
using environment variables.
2222

2323
## SDK resource detector configuration
2424

content/en/docs/zero-code/python/configuration.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ outputted.
119119
- `OTEL_PYTHON_LOG_LEVEL`: to set a custom log level (info, error, debug,
120120
warning)
121121
- `OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED`: to enable
122-
auto-instrumentation of logs. Attaches OTLP handler to Python root logger. See
123-
example [here](/docs/zero-code/python/logs-example)
122+
auto-instrumentation of logs. Attaches OTLP handler to Python root logger. For
123+
an example, see
124+
[Logs Auto-Instrumentation](/docs/zero-code/python/logs-example/).
124125

125126
Examples:
126127

content/en/docs/zero-code/python/logs-example.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ auto-instrumentation of logs. The example below is based on the logs example in
2222
> There is a logs bridge API; however, it is different from the Traces and
2323
> Metrics API, because it's not used by application developers to create logs.
2424
> Instead, they would use this bridge API to setup log appenders in the standard
25-
> language-specific logging libraries. More information can be found
26-
> [here](/docs/specs/otel/logs/api/).
25+
> language-specific logging libraries. For more information, see
26+
> [Logs API](/docs/specs/otel/logs/api/).
2727
2828
Start by creating the examples directory and the example Python file:
2929

@@ -50,9 +50,9 @@ with tracer.start_as_current_span("foo"):
5050
logging.getLogger().error("This is a log message")
5151
```
5252

53-
Grab a copy of the OTel Collector configuration from
54-
[here](https://github.com/open-telemetry/opentelemetry-python/blob/main/docs/examples/logs/otel-collector-config.yaml),
55-
and save it to `python-logs-example/otel-collector-config.yaml`
53+
Open and copy the
54+
[otel-collector-config.yaml](https://github.com/open-telemetry/opentelemetry-python/blob/main/docs/examples/logs/otel-collector-config.yaml)
55+
example, and save it to `python-logs-example/otel-collector-config.yaml`
5656

5757
## Prepare
5858

0 commit comments

Comments
 (0)