You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Java Agent lets you use `@Trace` not just for `com.example.myproject`, but also for any application whose name _begins_ like that, e.g. `com.example.myproject.foobar`. If you're tempted to list something like `["com", "io"]` to avoid having to fuss with this configuration as you add new projects, be careful; providing `@Trace`-ability to too many applications could hurt your package's build time.
111
-
112
110
#### Example
113
111
114
112
Add an annotation to some method in your code:
@@ -144,14 +142,14 @@ For Maven, add this to pom.xml:
144
142
<dependency>
145
143
<groupId>io.opentracing</groupId>
146
144
<artifactId>opentracing-api</artifactId>
147
-
<version>0.30.0</version>
145
+
<version>0.31.0</version>
148
146
</dependency>
149
147
150
148
<!-- OpenTracing Util -->
151
149
<dependency>
152
150
<groupId>io.opentracing</groupId>
153
151
<artifactId>opentracing-util</artifactId>
154
-
<version>0.30.0</version>
152
+
<version>0.31.0</version>
155
153
</dependency>
156
154
157
155
<!-- Datadog Tracer (only needed if you do not use dd-java-agent) -->
@@ -165,8 +163,8 @@ For Maven, add this to pom.xml:
0 commit comments