Skip to content

Commit 31283a3

Browse files
authored
Fix some links (#2220)
1 parent 773eb24 commit 31283a3

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ The extension takes care of the necessary configuration required to authenticate
270270

271271
The future of the [JMX metrics](./jmx-metrics/README.md) component,
272272
built on top of the
273-
[JMX metrics](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jmx-metrics/javaagent#jmx-metric-insight)
273+
[JMX metrics](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jmx-metrics#jmx-metric-insight)
274274
component from the opentelemetry-java-instrumentation repository.
275275

276276
### Maven extension

gcp-resources/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ env:
4747
4848
## Usage with Manual Instrumentation
4949
50-
It is recommended to use this resource detector with the [OpenTelemetry Autoconfiguration SPI](https://github.com/open-telemetry/opentelemetry-java/blob/main/sdk-extensions/autoconfigure/README.md#resource-provider-spi). The GCP resource detector automatically provides the detected resources via the [autoconfigure-spi](https://github.com/open-telemetry/opentelemetry-java/tree/main/sdk-extensions/autoconfigure-spi) SDK extension.
50+
It is recommended to use this resource detector with the [OpenTelemetry SDK autoconfiguration](https://opentelemetry.io/docs/languages/java/configuration/#zero-code-sdk-autoconfigure). The GCP resource detector automatically provides the detected resources via the [autoconfigure-spi](https://opentelemetry.io/docs/languages/java/configuration/#spi-service-provider-interface) SDK extension.
5151
5252
For a reference example showcasing the detected resource attributes and usage with `autoconfigure-spi`, see the [Resource detection example](https://github.com/open-telemetry/opentelemetry-java-examples/tree/main/resource-detection-gcp).
5353

jmx-metrics/docs/target-systems/jetty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Jetty Metrics
22

33
The JMX Metric Gatherer provides built in Jetty metric gathering capabilities.
4-
Details about using JMX with WildFly can be found here: https://www.eclipse.org/jetty/documentation/jetty-11/operations-guide/index.html#og-jmx
4+
Details about using JMX with WildFly can be found here: https://jetty.org/docs/jetty/11/operations-guide/jmx/index.html
55

66
### Metrics
77
* Name: `jetty.select.count`

jmx-scraper/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project is released as part of the [OpenTelemetry Java Contrib](https://git
1212
The latest release is available from:
1313

1414
- [GitHub Release assets](https://github.com/open-telemetry/opentelemetry-java-contrib/releases/latest/download/opentelemetry-jmx-scraper.jar)
15-
- [Maven Central](https://central.sonatype.com/artifact/io.opentelemetry.contrib/opentelemetry-jmx-scraper) or can be browsed via [MVN Repository](https://mvnrepository.com/artifact/io.opentelemetry.contrib/opentelemetry-jmx-scraper).
15+
- [Maven Central](https://central.sonatype.com/artifact/io.opentelemetry.contrib/opentelemetry-jmx-scraper)
1616

1717
## Usage
1818

maven-extension/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Maven OpenTelemetry Extension is configured using environment variables or J
1212
* (since Maven 3.3.1) configuring the extension in `.mvn/extensions.xml`.
1313

1414
In the code snippets below, replace `OPENTELEMETRY_MAVEN_VERSION` with the [latest
15-
release](https://search.maven.org/search?q=g:io.opentelemetry.contrib%20AND%20a:opentelemetry-maven-extension).
15+
release](https://central.sonatype.com/artifact/io.opentelemetry.contrib/opentelemetry-maven-extension).
1616

1717
### Adding the extension to the classpath
1818

@@ -109,8 +109,8 @@ In addition to the span attributes captured on every Maven plugin goal executio
109109
|----------------------------------------|--------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
110110
| `http.method` | string | `POST` |
111111
| `http.url` | string | Base URL of the uploaded artifact `${maven.build.repository.url}/${groupId}/${artifactId}/${version}` where the `.` of `${groupId}` are replaced by `/` |
112-
| `maven.build.repository.id` | string | ID of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#repository) |
113-
| `maven.build.repository.url` | string | URL of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#repository) |
112+
| `maven.build.repository.id` | string | ID of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#Repository) |
113+
| `maven.build.repository.url` | string | URL of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#Repository) |
114114
| `peer.service` | string | Maven repository hostname deduced from the Repository URL |
115115

116116
The `span.kind` is set to `client`
@@ -200,7 +200,7 @@ Steps to instrument a Maven Mojo:
200200

201201
* Add the OpenTelemetry API dependency in the `pom.xml` of the Maven plugin.
202202
Replace `OPENTELEMETRY_VERSION` with the [latest
203-
release](https://search.maven.org/search?q=g:io.opentelemetry%20AND%20a:opentelemetry-api).
203+
release](https://central.sonatype.com/artifact/io.opentelemetry/opentelemetry-api).
204204

205205
```xml
206206
<project>

samplers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The following samplers support [declarative configuration](https://opentelemetry
99
To use:
1010

1111
* Add a dependency on `io.opentelemetry.contrib:opentelemetry-samplers:<version>`
12-
* Follow the [instructions](https://github.com/open-telemetry/opentelemetry-java/blob/main/sdk-extensions/incubator/README.md#file-configuration) to configure OpenTelemetry with declarative configuration.
12+
* Follow the [instructions](https://github.com/open-telemetry/opentelemetry-java/blob/main/sdk-extensions/incubator/README.md#declarative-configuration) to configure OpenTelemetry with declarative configuration.
1313
* Configure the `.tracer_provider.sampler` to include the `rule_based_routing` sampler.
1414

1515
NOTE: Not yet available for use with the OTEL java agent, but should be in the near future. Please check back for updates.

0 commit comments

Comments
 (0)