Skip to content

Commit

Permalink
Merge pull request #700 from vasireddy99/releasejava321
Browse files Browse the repository at this point in the history
ADOT Java Agent version to use 1.32.1
  • Loading branch information
vasireddy99 committed Feb 27, 2024
2 parents dca9c0b + 60d4bdb commit 968e2ff
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 6 deletions.
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.1 is now available"
author: "Pavan Sai Vasireddy"
date: "27-Feb-2024"
body:
"AWS Distro for OpenTelemetry Java Instrumentation v1.32.1 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.1"

- title: "AWS Distro for OpenTelemetry Collector v0.38.0 is now available"
author: "Alexis Perez-Mendoza"
date: "22-February-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.1"
description: This blog post is the release announcement for AWS Distro for OpenTelemetry - Instrumentation for Java 1.32.1
---

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.1 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.1) and [Maven Central Repository](https://central.sonatype.com/artifact/software.amazon.opentelemetry/aws-opentelemetry-agent/1.32.1).

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.0")
implementation("software.amazon.opentelemetry:aws-opentelemetry-agent:1.32.1")
}
```

Expand All @@ -44,7 +44,7 @@ dependencies {
<dependency>
<groupId>software.amazon.opentelemetry</groupId>
<artifactId>aws-opentelemetry-agent</artifactId>
<version>1.32.0</version>
<version>1.32.1</version>
</dependency>
</dependencies>
```
Expand Down
8 changes: 4 additions & 4 deletions src/docs/getting-started/java-sdk/manual-instr.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ library instrumentation. When using this, do not include `opentelemetry-bom`.
##### For Gradle:
```kotlin lineNumbers=true
dependencies {
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.32.0-alpha"))
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.32.1-alpha"))

implementation("io.opentelemetry:opentelemetry-api")
implementation("io.opentelemetry:opentelemetry-exporter-otlp")
Expand All @@ -230,7 +230,7 @@ dependencies {
<dependency>
<groupId>io.opentelemetry.instrumentation</groupId>
<artifactId>opentelemetry-instrumentation-bom-alpha</artifactId>
<version>1.32.0-alpha</version>
<version>1.32.1-alpha</version>
<type>pom</type>
<scope>import</scope>
<dependency>
Expand Down Expand Up @@ -264,7 +264,7 @@ The `opentelemetry-instrumentation-aws-sdk-2.2` artifact provides instrumentatio
##### For Gradle:
```java lineNumbers=true
dependencies {
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.32.0-alpha"))\
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.32.1-alpha"))\

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

Expand All @@ -279,7 +279,7 @@ dependencies {
<dependency>
<groupId>io.opentelemetry.instrumentation</groupId>
<artifactId>opentelemetry-instrumentation-bom-alpha</artifactId>
<version>1.32.0-alpha</version>
<version>1.32.1-alpha</version>
<type>pom</type>
<scope>import</scope>
<dependency>
Expand Down

0 comments on commit 968e2ff

Please sign in to comment.