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.
110
-
111
109
#### Example
112
110
113
111
Add an annotation to some method in your code:
@@ -143,14 +141,14 @@ For Maven, add this to pom.xml:
143
141
<dependency>
144
142
<groupId>io.opentracing</groupId>
145
143
<artifactId>opentracing-api</artifactId>
146
-
<version>0.30.0</version>
144
+
<version>0.31.0</version>
147
145
</dependency>
148
146
149
147
<!-- OpenTracing Util -->
150
148
<dependency>
151
149
<groupId>io.opentracing</groupId>
152
150
<artifactId>opentracing-util</artifactId>
153
-
<version>0.30.0</version>
151
+
<version>0.31.0</version>
154
152
</dependency>
155
153
156
154
<!-- Datadog Tracer (only needed if you do not use dd-java-agent) -->
@@ -164,8 +162,8 @@ For Maven, add this to pom.xml:
0 commit comments