Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add blog post for ADOT Java 1.32.3 #733

Merged
merged 5 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/content/BlogPosts/blogPosts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ description:
path: /blog

blogs:
- title: "AWS Distro for OpenTelemetry Java Instrumentation v1.32.3 is now available"
author: "Thomas Pierce"
date: "22-July-2024"
body:
"AWS Distro for OpenTelemetry Java Instrumentation v1.32.3 is now available. You can download the latest ADOT Java auto-instrumentation Docker image
from the Amazon Elastic Container Registry (Amazon ECR) Public Gallery and the jar artifacts from the Maven Central Repository."
link: "/docs/ReleaseBlogs/aws-distro-for-opentelemetry-java-instrumentation-v1.32.3"

- title: "AWS Distro for OpenTelemetry Lambda Layers are now available with ADOT Collector v0.40.0"
author: "Alexis Perez-Mendoza"
date: "09-July-2024"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
title: "AWS Distro for OpenTelemetry Java Instrumentation 1.32.3"
description: This blog post is the release announcement for AWS Distro for OpenTelemetry - Instrumentation for Java 1.32.3
---

import SectionSeparator from "components/MdxSectionSeparator/sectionSeparator.jsx";
import imgJIR1 from "assets/img/blogs/adot-java-instrumentation/Functional_Overview.png"

<SectionSeparator />

[AWS Distro for OpenTelemetry (ADOT)](https://aws-otel.github.io/) Agent for Java 1.32.3 is now available.

<SectionSeparator />

**Release Highlights**

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)

Check out the release notes for upstream version
- https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.32.1

**Download**

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
[GitHub](https://github.com/aws-observability/aws-otel-java-instrumentation/releases/tag/v1.32.3) and [Maven Central Repository](https://central.sonatype.com/artifact/software.amazon.opentelemetry/aws-opentelemetry-agent/1.32.3).

To learn more about how to use AWS Distro for OpenTelemetry (ADOT) to collect data for your observability solution,
check out the hands-on [AWS Observability workshop](https://observability.workshop.aws/en/adot.html).
Please file an [issue](https://github.com/aws-observability/aws-otel-community/issues) if you have any
questions about the distribution, features, or its components.

We also welcome you to participate in the [OpenTelemetry project](https://github.com/open-telemetry).
The project was [approved for incubation](https://www.cncf.io/blog/2021/08/26/opentelemetry-becomes-a-cncf-incubating-project/) status
in August 2021 by the Cloud Native Computing Foundation Technical Oversight Committee (CNCF TOC). Learn more about
[AWS Distro for OpenTelemetry](https://aws.amazon.com/blogs/opensource/category/management-tools/aws-distro-for-opentelemetry/) on the
[AWS Open Source Blog](https://aws.amazon.com/blogs/opensource/category/management-tools/aws-distro-for-opentelemetry/), where we announced
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
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.
4 changes: 2 additions & 2 deletions src/docs/getting-started/java-sdk/auto-instr.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The ADOT Java Agent is also published in the following maven coordinates:

```kotlin lineNumbers=true
dependencies {
implementation("software.amazon.opentelemetry:aws-opentelemetry-agent:1.32.2")
implementation("software.amazon.opentelemetry:aws-opentelemetry-agent:1.32.3")
}
```

Expand All @@ -44,7 +44,7 @@ dependencies {
<dependency>
<groupId>software.amazon.opentelemetry</groupId>
<artifactId>aws-opentelemetry-agent</artifactId>
<version>1.32.2</version>
<version>1.32.3</version>
</dependency>
</dependencies>
```
Expand Down