Skip to content

Commit e439bcf

Browse files
authored
Merge pull request #779 from aws-otel/java-release-2.10.0
Updating documentation to point to 2.10.0
2 parents 22d6b4c + 948a884 commit e439bcf

File tree

4 files changed

+52
-6
lines changed

4 files changed

+52
-6
lines changed

src/content/BlogPosts/blogPosts.yaml

+8
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 v2.10.0 is now available"
10+
author: "Ping Xiang"
11+
date: "28-March-2025"
12+
body:
13+
"AWS Distro for OpenTelemetry Java Instrumentation v2.10.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-v2.10.0"
16+
917
- title: "AWS Distro for OpenTelemetry Lambda Layers with ADOT Collector v0.42.0 have been patched and are now available"
1018
author: "Pavan Sai Vasireddy"
1119
date: "25-March-2025"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: "AWS Distro for OpenTelemetry Java Instrumentation 2.10.0"
3+
description: This blog post is the release announcement for AWS Distro for OpenTelemetry - Instrumentation for Java 2.10.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 2.10.0 is now available.
12+
13+
<SectionSeparator />
14+
15+
**Release Highlights**
16+
17+
Contains the patched version of OpenTelemetry Instrumentation for Java - [2.10.0](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.10.0)
18+
19+
Check out the release notes for upstream version
20+
- https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.10.0
21+
22+
**Download**
23+
24+
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
25+
[GitHub](https://github.com/aws-observability/aws-otel-java-instrumentation/releases/tag/v2.10.0) and [Maven Central Repository](https://central.sonatype.com/artifact/software.amazon.opentelemetry/aws-opentelemetry-agent/2.10.0).
26+
27+
To learn more about how to use AWS Distro for OpenTelemetry (ADOT) to collect data for your observability solution,
28+
check out the hands-on [AWS Observability workshop](https://observability.workshop.aws/en/adot.html).
29+
Please file an [issue](https://github.com/aws-observability/aws-otel-community/issues) if you have any
30+
questions about the distribution, features, or its components.
31+
32+
We also welcome you to participate in the [OpenTelemetry project](https://github.com/open-telemetry).
33+
The project was [approved for incubation](https://www.cncf.io/blog/2021/08/26/opentelemetry-becomes-a-cncf-incubating-project/) status
34+
in August 2021 by the Cloud Native Computing Foundation Technical Oversight Committee (CNCF TOC). Learn more about
35+
[AWS Distro for OpenTelemetry](https://aws.amazon.com/blogs/opensource/category/management-tools/aws-distro-for-opentelemetry/) on the
36+
[AWS Open Source Blog](https://aws.amazon.com/blogs/opensource/category/management-tools/aws-distro-for-opentelemetry/), where we announced
37+
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
38+
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The ADOT Java Agent is also published in the following maven coordinates:
3535

3636
```kotlin lineNumbers=true
3737
dependencies {
38-
implementation("software.amazon.opentelemetry:aws-opentelemetry-agent:2.0.1")
38+
implementation("software.amazon.opentelemetry:aws-opentelemetry-agent:2.10.0")
3939
}
4040
```
4141

@@ -44,7 +44,7 @@ dependencies {
4444
<dependency>
4545
<groupId>software.amazon.opentelemetry</groupId>
4646
<artifactId>aws-opentelemetry-agent</artifactId>
47-
<version>2.0.1</version>
47+
<version>2.10.0</version>
4848
</dependency>
4949
</dependencies>
5050
```

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -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:2.0.1-alpha"))
214+
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.10.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>2.0.1-alpha</version>
233+
<version>2.10.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:2.0.1-alpha"))\
267+
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.10.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>2.0.1-alpha</version>
282+
<version>2.10.0-alpha</version>
283283
<type>pom</type>
284284
<scope>import</scope>
285285
<dependency>

0 commit comments

Comments
 (0)