Skip to content

Commit d16d455

Browse files
Merge branch 'main' into datadog-exporter-add-otlp-logs-support
2 parents a3384ee + b8bea36 commit d16d455

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
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 v1.32.5 is now available"
10+
author: "Mengyi Zhou"
11+
date: "31-October-2024"
12+
body:
13+
"AWS Distro for OpenTelemetry Java Instrumentation v1.32.5 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.32.5"
16+
917
- title: "AWS Distro for OpenTelemetry EKS Add-on v0.102.1-eksbuild.2 is now available"
1018
author: "Pavan Sai Vasireddy"
1119
date: "23-October-2024"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: "AWS Distro for OpenTelemetry Java Instrumentation 1.32.5"
3+
description: This blog post is the release announcement for AWS Distro for OpenTelemetry - Instrumentation for Java 1.32.5
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 1.32.5 is now available.
12+
13+
<SectionSeparator />
14+
15+
**Release Highlights**
16+
17+
Contains the patched version of OpenTelemetry Instrumentation for Java - [1.32.1](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.32.1)
18+
19+
Check out the release notes for upstream version
20+
- https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.32.1
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/v1.32.5) and [Maven Central Repository](https://central.sonatype.com/artifact/software.amazon.opentelemetry/aws-opentelemetry-agent/1.32.5).
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:1.32.4")
38+
implementation("software.amazon.opentelemetry:aws-opentelemetry-agent:1.32.5")
3939
}
4040
```
4141

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

0 commit comments

Comments
 (0)