Skip to content

Commit ae2bc96

Browse files
authored
Merge pull request #550 from aws-otel/rapphil-release-adot-java-1.26.0
Add documentation for ADOT Java Release v1.26.0
2 parents 74ac6d5 + 3101ebc commit ae2bc96

File tree

4 files changed

+57
-10
lines changed

4 files changed

+57
-10
lines changed

src/content/BlogPosts/blogPosts.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ description:
66
path: /blog
77

88
blogs:
9+
- title: "AWS Distro for OpenTelemetry Java Instrumentation v1.26.0 is now available"
10+
author: "Raphael Silva"
11+
date: "18-May-2023"
12+
body:
13+
"AWS Distro for OpenTelemetry Java Instrumentation v1.26.0 is now available. You can download the latest ADOT Java auto-instrumentation Docker image
14+
from the Amazon Elastic Container Registry (Amazon ECR) Public Gallery and the jar artifacts from the Maven Central Repository."
15+
link: "/docs/ReleaseBlogs/aws-distro-for-opentelemetry-java-instrumentation-v1.26.0"
16+
917
- title: "AWS Distro for OpenTelemetry EKS Add-on v0.74.0 is now available"
1018
author: "Bryan Aguilar"
1119
date: "16-May-2023"
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "AWS Distro for OpenTelemetry Java Instrumentation v1.26.0"
3+
description: This blog post is the release announcement for AWS Distro for OpenTelemetry - Instrumentation for Java v1.26.0
4+
---
5+
6+
import SectionSeparator from "components/MdxSectionSeparator/sectionSeparator.jsx";
7+
import imgJIR1 from "assets/img/blogs/adot-java-instrumentation/Functional_Overview.png"
8+
9+
<SectionSeparator />
10+
11+
[AWS Distro for OpenTelemetry (ADOT)](https://aws-otel.github.io/) Agent for Java v1.26.0 is now available.
12+
13+
<SectionSeparator />
14+
15+
**Release Highlights**
16+
17+
Contains updates of the following upstream components:
18+
* OpenTelemetry Java - [1.25.0](https://github.com/open-telemetry/opentelemetry-java/releases/tag/v1.25.0) and [1.26.0](https://github.com/open-telemetry/opentelemetry-java/releases/tag/v1.26.0)
19+
* OpenTelemetry Instrumentation for Java - [1.25.0](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.25.0), [1.25.1](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.25.1) and [1.26.0](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.26.0)
20+
* OpenTelemetry Java Contrib - [1.25.0](https://github.com/open-telemetry/opentelemetry-java-contrib/releases/tag/v1.25.0), [1.25.1](https://github.com/open-telemetry/opentelemetry-java-contrib/releases/tag/v1.25.1) and [1.26.0](https://github.com/open-telemetry/opentelemetry-java-contrib/releases/tag/v1.26.0)
21+
22+
23+
**Download**
24+
25+
You can download the latest Docker image from [our public ECR repository](https://gallery.ecr.aws/aws-observability/adot-autoinstrumentation-java), and jar artifacts from the
26+
[GitHub](https://github.com/aws-observability/aws-otel-java-instrumentation/releases/tag/v1.26.0) and [Maven Central Repository](https://central.sonatype.com/artifact/software.amazon.opentelemetry/aws-opentelemetry-agent/1.26.0).
27+
28+
To learn more about how to use AWS Distro for OpenTelemetry (ADOT) to collect data for your observability solution,
29+
check out the hands-on [AWS Observability workshop](https://observability.workshop.aws/en/adot.html).
30+
Please file an [issue](https://github.com/aws-observability/aws-otel-community/issues) if you have any
31+
questions about the distribution, features, or its components.
32+
33+
We also welcome you to participate in the [OpenTelemetry project](https://github.com/open-telemetry).
34+
The project was [approved for incubation](https://www.cncf.io/blog/2021/08/26/opentelemetry-becomes-a-cncf-incubating-project/) status
35+
in August 2021 by the Cloud Native Computing Foundation Technical Oversight Committee (CNCF TOC). Learn more about
36+
[AWS Distro for OpenTelemetry](https://aws.amazon.com/blogs/opensource/category/management-tools/aws-distro-for-opentelemetry/) on the
37+
[AWS Open Source Blog](https://aws.amazon.com/blogs/opensource/category/management-tools/aws-distro-for-opentelemetry/), where we announced
38+
the distribution’s [general availability for tracing](https://aws.amazon.com/blogs/opensource/aws-distro-for-opentelemetry-is-now-ga-for-tracing/) in September 2021
39+
and the distribution's [general availability for metrics](https://aws.amazon.com/blogs/opensource/aws-distro-for-opentelemetry-is-now-generally-available-for-metrics/) in May 2022.

src/docs/getting-started/java-sdk/auto-instr.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ artifact, any usage of it will be disabled by the agent.
9393
##### For Gradle:
9494
```kotlin lineNumbers=true
9595
dependencies {
96-
implementation("io.opentelemetry:opentelemetry-api:1.24.0")
96+
implementation("io.opentelemetry:opentelemetry-api:1.26.0")
9797
}
9898
```
9999

@@ -103,7 +103,7 @@ dependencies {
103103
<dependency>
104104
<groupId>io.opentelemetry</groupId>
105105
<artifactId>opentelemetry-api</artifactId>
106-
<version>1.24.0</version>
106+
<version>1.26.0</version>
107107
</dependency>
108108
</dependencies>
109109
```

src/docs/getting-started/java-sdk/manual-instr.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ to align dependency versions for non-contrib components.
3737
##### For Gradle:
3838
```kotlin lineNumbers=true
3939
dependencies {
40-
api(platform("io.opentelemetry:opentelemetry-bom:1.24.0"))
40+
api(platform("io.opentelemetry:opentelemetry-bom:1.26.0"))
4141

4242
implementation("io.opentelemetry:opentelemetry-api")
4343
implementation("io.opentelemetry:opentelemetry-exporter-otlp")
@@ -46,7 +46,7 @@ dependencies {
4646

4747
implementation("io.opentelemetry:opentelemetry-extension-aws")
4848
implementation("io.opentelemetry:opentelemetry-sdk-extension-aws")
49-
implementation("io.opentelemetry.contrib:opentelemetry-aws-xray:1.24.0")
49+
implementation("io.opentelemetry.contrib:opentelemetry-aws-xray:1.26.0")
5050
}
5151
```
5252

@@ -57,7 +57,7 @@ dependencies {
5757
<dependency>
5858
<groupId>io.opentelemetry</groupId>
5959
<artifactId>opentelemetry-bom</artifactId>
60-
<version>1.24.0</version>
60+
<version>1.26.0</version>
6161
<type>pom</type>
6262
<scope>import</scope>
6363
<dependency>
@@ -87,7 +87,7 @@ dependencies {
8787
<dependency>
8888
<groupId>io.opentelemetry.contrib</groupId>
8989
<artifactId>opentelemetry-aws-xray</artifactId>
90-
<version>1.24.0</version>
90+
<version>1.26.0</version>
9191
</dependency>
9292
</dependencies>
9393
```
@@ -211,7 +211,7 @@ library instrumentation. When using this, do not include `opentelemetry-bom`.
211211
##### For Gradle:
212212
```kotlin lineNumbers=true
213213
dependencies {
214-
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.24.0-alpha"))
214+
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.26.0-alpha"))
215215

216216
implementation("io.opentelemetry:opentelemetry-api")
217217
implementation("io.opentelemetry:opentelemetry-exporter-otlp")
@@ -230,7 +230,7 @@ dependencies {
230230
<dependency>
231231
<groupId>io.opentelemetry.instrumentation</groupId>
232232
<artifactId>opentelemetry-instrumentation-bom-alpha</artifactId>
233-
<version>1.24.0-alpha</version>
233+
<version>1.26.0-alpha</version>
234234
<type>pom</type>
235235
<scope>import</scope>
236236
<dependency>
@@ -264,7 +264,7 @@ The `opentelemetry-instrumentation-aws-sdk-2.2` artifact provides instrumentatio
264264
##### For Gradle:
265265
```java lineNumbers=true
266266
dependencies {
267-
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.24.0-alpha"))\
267+
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.26.0-alpha"))\
268268

269269
implementation("io.opentelemetry.instrumentation:opentelemetry-aws-sdk-2.2")
270270

@@ -279,7 +279,7 @@ dependencies {
279279
<dependency>
280280
<groupId>io.opentelemetry.instrumentation</groupId>
281281
<artifactId>opentelemetry-instrumentation-bom-alpha</artifactId>
282-
<version>1.24.0-alpha</version>
282+
<version>1.26.0-alpha</version>
283283
<type>pom</type>
284284
<scope>import</scope>
285285
<dependency>

0 commit comments

Comments
 (0)