Skip to content

Commit 4dda37f

Browse files
authored
Small updates to the java agent zero code docs (#5857)
1 parent b274bdc commit 4dda37f

File tree

5 files changed

+32
-24
lines changed

5 files changed

+32
-24
lines changed

content/en/blog/2024/fuzzing-audit-results.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2024-12-20
55
author: '[Adam Korczynski](https://github.com/AdamKorcz)'
66
issue: 5798
77
sig: GC
8-
cSpell:ignore: Korczynski containerd
8+
cSpell:ignore: containerd Korczynski
99
---
1010

1111
OpenTelemetry is happy to announce the completion of the Collector's fuzzing

content/en/docs/zero-code/java/agent/annotations.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@ cSpell:ignore: Flowable javac reactivestreams reactivex
77
---
88

99
For most users, the out-of-the-box instrumentation is completely sufficient and
10-
nothing more has to be done. Sometimes, however, users wish to create
10+
nothing more needs to be done. Sometimes, however, users wish to create
1111
[spans](/docs/concepts/signals/traces/#spans) for their own custom code without
12-
doing too much code change.
12+
having to change much code. The `WithSpan` and `WithAttribute` annotations
13+
support those use cases.
1314

1415
## Dependencies
1516

1617
You'll need to add a dependency on the
1718
`opentelemetry-instrumentation-annotations` library to use the `@WithSpan`
1819
annotation.
1920

20-
### Maven
21+
{{< tabpane text=true >}} {{% tab "Maven" %}}
2122

2223
```xml
2324
<dependencies>
@@ -29,6 +30,8 @@ annotation.
2930
</dependencies>
3031
```
3132

33+
{{% /tab %}} {{% tab "Gradle" %}}
34+
3235
### Gradle
3336

3437
```groovy
@@ -37,10 +40,12 @@ dependencies {
3740
}
3841
```
3942

43+
{{% /tab %}} {{< /tabpane >}}
44+
4045
## Creating spans around methods with `@WithSpan`
4146

42-
To create a [span](/docs/concepts/signals/traces/#spans) corresponding to one of
43-
your method, annotate the method with `@WithSpan`.
47+
To create a [span](/docs/concepts/signals/traces/#spans) that instruments a
48+
particular method, annotate the method with `@WithSpan`.
4449

4550
```java
4651
import io.opentelemetry.instrumentation.annotations.WithSpan;
@@ -78,9 +83,10 @@ types listed below, then the span will not be ended until the future completes.
7883
## Adding attributes to the span with `@SpanAttribute`
7984

8085
When a [span](/docs/concepts/signals/traces/#spans) is created for an annotated
81-
method the values of the arguments to the method invocation can be automatically
82-
added as [attributes](/docs/concepts/signals/traces/#attributes) to the created
83-
span by annotating the method parameters with the `@SpanAttribute` annotation.
86+
method, the values of the arguments to the method invocation can be
87+
automatically added as [attributes](/docs/concepts/signals/traces/#attributes)
88+
to the created span. Simply annotate the method parameters with the
89+
`@SpanAttribute` annotation:
8490

8591
```java
8692
import io.opentelemetry.instrumentation.annotations.SpanAttribute;

content/en/docs/zero-code/java/agent/configuration.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ The agent can consume configuration from one or more of the following sources
2121

2222
## Configuring with Environment Variables
2323

24-
In some environments, configuring via Environment Variables is more preferred.
25-
Any setting configurable with a System Property can also be configured with an
26-
Environment Variable. Many settings below include both options, but where they
27-
don't apply the following steps to determine the correct name mapping of the
28-
desired System Property:
24+
In certain environments, configuring settings through environment variables is
25+
often preferred. Any setting that can be configured using a system property can
26+
also be set using an environment variable. While many of the settings below
27+
provide examples for both formats, for those that do not, use the following
28+
steps to determine the correct name mapping for the desired system property:
2929

30-
- Convert the System Property to uppercase.
30+
- Convert the system property name to uppercase.
3131
- Replace all `.` and `-` characters with `_`.
3232

3333
For example `otel.instrumentation.common.default-enabled` would convert to
3434
`OTEL_INSTRUMENTATION_COMMON_DEFAULT_ENABLED`.
3535

3636
## Configuration file
3737

38-
You can provide a path to agent configuration file by setting the following
38+
You can provide a path to an agent configuration file by setting the following
3939
property:
4040

41-
{{% config_option name="otel.javaagent.configuration-file" %}} Path to valid
41+
{{% config_option name="otel.javaagent.configuration-file" %}} Path to a valid
4242
Java properties file which contains the agent configuration.
4343
{{% /config_option %}}
4444

content/en/docs/zero-code/java/agent/disable.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ to have more control of which instrumentation is applied.
2626
{{% config_option name="otel.instrumentation.[name].enabled" %}} Set to `true`
2727
to enable each desired instrumentation individually. {{% /config_option %}}
2828

29-
> **Note**: Some instrumentation relies on other instrumentation to function
30-
> properly. When selectively enabling instrumentation, be sure to enable the
31-
> transitive dependencies too. Determining this dependency relationship is left
32-
> as an exercise to the user.
29+
{{% alert title="Note" color="warning" %}} Some instrumentation relies on other
30+
instrumentation to function properly. When selectively enabling instrumentation,
31+
be sure to enable the transitive dependencies too. Determining this dependency
32+
relationship is left as an exercise to the user. This is considered advanced
33+
usage and is not recommended for most users. {{% /alert %}}
3334

3435
## Enable manual instrumentation only
3536

content/en/docs/zero-code/java/agent/instrumentation/http.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ instrumentations.
3939
4040
## Capturing servlet request parameters
4141

42-
You can configure the agent to capture predefined HTTP request parameter as span
43-
attributes for requests that are handled by Servlet API. Use the following
44-
property to define which servlet request parameters you want to capture:
42+
You can configure the agent to capture predefined HTTP request parameters as
43+
span attributes for requests that are handled by the Servlet API. Use the
44+
following property to define which servlet request parameters you want to
45+
capture:
4546

4647
{{% config_option name="otel.instrumentation.servlet.experimental.capture-request-parameters" %}}
4748
A comma-separated list of request parameter names. {{% /config_option %}}

0 commit comments

Comments
 (0)