Skip to content

Commit bb403ad

Browse files
committed
Address review comments
1 parent 459409f commit bb403ad

File tree

3 files changed

+10
-15
lines changed

3 files changed

+10
-15
lines changed

content/en/docs/zero-code/java/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ cascade:
1010
otel: 1.46.0
1111
---
1212

13-
Zero-code instrumentation with Java uses a Java agent JAR or Spring Boot
14-
Starter. To learn how to manually instrument your service or app code, see
13+
Zero-code instrumentation with Java uses a Java agent JAR, Spring Boot
14+
Starter or Quarkus. To learn how to manually instrument your service or app code, see
1515
[Manual instrumentation](/docs/languages/java/instrumentation/).
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
title: Quarkus
2+
title: Quarkus instrumentation
33
linkTitle: Quarkus
44
---
55

66
[Quarkus](https://quarkus.io/) is an open source framework designed to help
7-
software developers build efficient cloud-native applications both in JVM and
8-
native modes.
7+
software developers build efficient cloud-native applications both with JVM and
8+
Quarkus native image applications.
99

1010
Quarkus uses extensions to provide optimized support for a wide range of
1111
libraries. The
1212
[Quarkus OpenTelemetry extension](https://quarkus.io/guides/opentelemetry)
1313
provides:
1414

15-
- Automatic instrumentation
15+
- Out of the box instrumentation
1616
- OpenTelemetry SDK autoconfiguration, supporting almost all system properties
1717
defined for the
1818
[OpenTelemetry SDK](https://opentelemetry.io/docs/languages/java/configuration/)
1919
- [Vert.x](https://vertx.io/) based OTLP exporter
20-
- Can be used in JVM and native mode (where the Java agent doesn't work)
20+
- The same instrumentations can be used with JVM and native image applications (where the OpenTelemetry Java agent doesn't work).
2121

2222
The Quarkus can also be instrumented with the
23-
[OpenTelemetry Java agent](../agent) but only on JVM mode.
23+
[OpenTelemetry Java agent](../agent) but only with a JVM.

content/en/docs/zero-code/java/quarkus/getting-started.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@ To enable OpenTelemetry in your Quarkus application, add the
88

99
{{< tabpane >}} {{< tab header="Maven (`pom.xml`)" lang=Maven >}}
1010

11-
````xml
12-
13-
{{< tabpane text=true >}} {{% tab header="Maven (`pom.xml`)" lang=Maven %}}
14-
1511
```xml
1612
<dependency>
1713
<groupId>io.quarkus</groupId>
1814
<artifactId>quarkus-opentelemetry</artifactId>
1915
</dependency>
20-
````
16+
```
2117

2218
{{% /tab %}} {{% tab header="Gradle (`build.gradle`)" lang=Gradle %}}
2319

@@ -44,7 +40,6 @@ The remaining configurations are available in the
4440
{{% alert title="Note" color="info" %}}
4541

4642
You can also use the [Java agent](../../agent) to instrument your Quarkus
47-
application in JVM mode. For the pros and cons, see
48-
[Java zero-code instrumentation](..).
43+
application in a JVM.
4944

5045
{{% /alert %}}

0 commit comments

Comments
 (0)