@@ -7,17 +7,18 @@ cSpell:ignore: Flowable javac reactivestreams reactivex
7
7
---
8
8
9
9
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
11
11
[ 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.
13
14
14
15
## Dependencies
15
16
16
17
You'll need to add a dependency on the
17
18
` opentelemetry-instrumentation-annotations ` library to use the ` @WithSpan `
18
19
annotation.
19
20
20
- ### Maven
21
+ {{< tabpane text=true >}} {{% tab " Maven" %}}
21
22
22
23
``` xml
23
24
<dependencies >
@@ -29,6 +30,8 @@ annotation.
29
30
</dependencies >
30
31
```
31
32
33
+ {{% /tab %}} {{% tab "Gradle" %}}
34
+
32
35
### Gradle
33
36
34
37
``` groovy
@@ -37,10 +40,12 @@ dependencies {
37
40
}
38
41
```
39
42
43
+ {{% /tab %}} {{< /tabpane >}}
44
+
40
45
## Creating spans around methods with ` @WithSpan `
41
46
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 ` .
44
49
45
50
``` java
46
51
import io.opentelemetry.instrumentation.annotations.WithSpan ;
@@ -78,9 +83,10 @@ types listed below, then the span will not be ended until the future completes.
78
83
## Adding attributes to the span with ` @SpanAttribute `
79
84
80
85
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:
84
90
85
91
``` java
86
92
import io.opentelemetry.instrumentation.annotations.SpanAttribute ;
0 commit comments