Skip to content

Commit 615e856

Browse files
authored
Merge branch 'main' into lambdadocchnage
2 parents 4b02a57 + 5064b45 commit 615e856

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/docs/getting-started/java-sdk/trace-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.19.1")
96+
implementation("io.opentelemetry:opentelemetry-api:1.19.0")
9797
}
9898
```
9999

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

src/docs/getting-started/java-sdk/trace-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.19.1"))
40+
api(platform("io.opentelemetry:opentelemetry-bom:1.19.0"))
4141

4242
implementation("io.opentelemetry:opentelemetry-api")
4343
implementation("io.opentelemetry:opentelemetry-exporter-otlp")
@@ -57,7 +57,7 @@ dependencies {
5757
<dependency>
5858
<groupId>io.opentelemetry</groupId>
5959
<artifactId>opentelemetry-bom</artifactId>
60-
<version>1.19.1</version>
60+
<version>1.19.2</version>
6161
<type>pom</type>
6262
<scope>import</scope>
6363
<dependency>
@@ -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.19.1-alpha"))
214+
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.19.2-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.19.1-alpha</version>
233+
<version>1.19.2-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.19.1-alpha"))\
267+
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.19.2-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.19.1-alpha</version>
282+
<version>1.19.2-alpha</version>
283283
<type>pom</type>
284284
<scope>import</scope>
285285
<dependency>
@@ -397,8 +397,8 @@ class RequestHandler {
397397

398398
### Creating Metrics
399399

400-
Up to v1.19.1 of OpenTelemetry for Java, there are few libraries and frameworks that make use of the Metrics API.
401-
Similarly to Traces, you can create custom metrics in your application using the OpentTelemetry API and SDK.
400+
Up to v1.19.2 of OpenTelemetry for Java Instrumentation, there are few libraries and frameworks that make use of the Metrics API.
401+
Similarly to Traces, you can create custom metrics in your application using the OpenTelemetry API and SDK.
402402

403403
In the following example application we demonstrate how to use the three types of metric instruments that
404404
are available to record metrics: Counters, Gauges and Histograms.

0 commit comments

Comments
 (0)