Skip to content

Commit 499f95e

Browse files
committed
Exclude jboss mdb proxies from instrumenting
1 parent 2b24697 commit 499f95e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dd-java-agent/agent-tooling/src/main/java/datadog/trace/agent/tooling/bytebuddy/matcher/ProxyClassIgnores.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public static boolean isIgnored(String name) {
1212
|| name.contains("$$EnhancerByGuice$$")
1313
|| name.contains("$$EnhancerByProxool$$")
1414
|| name.contains("$$$view")
15+
|| name.contains("$$$endpoint") // jboss mdb proxies
1516
|| name.contains("$$_Weld")
1617
|| name.contains("_$$_jvst")) {
1718
return true;

0 commit comments

Comments
 (0)