Skip to content

Commit 3286f41

Browse files
traskjaydeluca
andauthored
Fix broken anchors (#7563)
Co-authored-by: Jay DeLuca <[email protected]>
1 parent bd9ec81 commit 3286f41

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2758,7 +2758,7 @@ should not be many. Thanks for bearing with us on this.
27582758
This provides improved ergonomics and control around autoconfigure customization.
27592759
- Added experimental support for enabling OTLP retry support for the `grpc` exporters. If enabled
27602760
via `otel.experimental.exporter.otlp.retry.enabled`,
2761-
a [default retry policy](https://github.com/open-telemetry/opentelemetry-java/tree/main/sdk-extensions/autoconfigure#otlp-exporter-retry)
2761+
a [default retry policy](https://opentelemetry.io/docs/languages/java/configuration/#properties-exporters)
27622762
will be used.
27632763
- The metric export interval of `PeriodicMetricReader` is now configured
27642764
via `otel.metric.export.interval`. The existing `otel.imr.export.interval` property has been

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ See the [VERSIONING.md](VERSIONING.md) for complete details on compatibility pol
235235

236236
## Contacting us
237237

238-
We hold regular meetings. See details at [community page](https://github.com/open-telemetry/community#java-sdk).
238+
We hold regular meetings. See details at [community page](https://github.com/open-telemetry/community#implementation-sigs).
239239

240240
To report a bug, or request a new feature,
241241
please [open an issue](https://github.com/open-telemetry/opentelemetry-java/issues/new/choose).

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The following credentials are required for building or publishing (and automatic
7676
* `SONATYPE_USER` and `SONATYPE_KEY`: Sonatype username and password.
7777
* Each maintainer will have their own set of Sonotype credentials with permission to publish to
7878
the `io.opentelemetry` group prefix.
79-
* [Register to publish](https://central.sonatype.org/register/central-portal/#and-publishing-is-easy)
79+
* [Register to publish](https://central.sonatype.org/register/central-portal/#publishing)
8080
and comment on [OSSRH-63768](https://issues.sonatype.org/browse/OSSRH-63768) with confirmation
8181
from another maintainer.
8282
* To obtain `SONATYPE_USER` and `SONATYPE_KEY` for your account, login

VERSIONING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ respect to semantic versioning.
7373
|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
7474
| Java | 8+ | All artifacts, unless otherwise noted | Changing requires major version bump. |
7575
| Android | 23+ (NOTE: [desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring) is required. We stay up to date with the latest version of [desugar_jdk_libs](https://github.com/google/desugar_jdk_libs).) | Artifacts using `otel.animalsniffer-conventions` plugin | Kept in sync with minimum requirements for [Google Play services](https://developers.google.com/android/guides/setup). Subject to change in minor version. |
76-
| Kotlin | 1.8+ | Only applies to `opentelemetry-extension-kotlin` | Kept in sync with [minimum non-deprecated](https://kotlinlang.org/docs/gradle-compiler-options.html#attributes-common-to-jvm-and-js) version. Subject to change in minor versions. |
76+
| Kotlin | 1.8+ | Only applies to `opentelemetry-extension-kotlin` | Kept in sync with [minimum non-deprecated](https://kotlinlang.org/docs/gradle-compiler-options.html#attributes-common-to-jvm-and-javascript) version. Subject to change in minor versions. |
7777

7878
## API vs SDK
7979

extensions/trace-propagators/src/main/java/io/opentelemetry/extension/trace/propagation/B3Propagator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* href=https://github.com/openzipkin/b3-propagation>openzipkin/b3-propagation</a>.
2121
*
2222
* <p>Also see <a
23-
* href=https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/context/api-propagators.md#b3-requirements>B3
23+
* href="https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/context/api-propagators.md#b3-requirements">B3
2424
* Requirements</a>
2525
*
2626
* <p>To register the default B3 propagator, which injects a single header, use:

extensions/trace-propagators/src/main/java/io/opentelemetry/extension/trace/propagation/JaegerPropagator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
/**
3232
* Implementation of the Jaeger propagation protocol. See <a
33-
* href=https://www.jaegertracing.io/docs/client-libraries/#propagation-format>Jaeger Propagation
33+
* href="https://www.jaegertracing.io/docs/client-libraries/#propagation-format">Jaeger Propagation
3434
* Format</a>.
3535
*/
3636
@Immutable

sdk-extensions/jaeger-remote-sampler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Jaeger Remote Sampler
22

3-
This module implements [Jaeger remote sampler](https://www.jaegertracing.io/docs/latest/sampling/#collector-sampling-configuration).
3+
This module implements [Jaeger remote sampler](https://www.jaegertracing.io/docs/latest/sampling/#remote-sampling).
44
The sampler configuration is received from collector's gRPC endpoint.
55

66
### Example

sdk/metrics/src/main/java/io/opentelemetry/sdk/metrics/internal/data/ImmutableHistogramData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* A histogram metric point.
1818
*
1919
* <p>See:
20-
* https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/datamodel.md#histogram
20+
* https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/data-model.md#histogram
2121
*
2222
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
2323
* at any time.

0 commit comments

Comments
 (0)