Remove `isSynthetic()` ignore
There’s concern that this will cause classes to be skipped that we do want to instrument.
This commit is contained in:
parent
ccee63574d
commit
c65c79207a
|
@ -69,8 +69,6 @@ public class AgentInstaller {
|
|||
.or(ElementMatchers.<TypeDescription>isAnnotation())
|
||||
// Unlikely to ever need to instrument an enum:
|
||||
.or(ElementMatchers.<TypeDescription>isEnum())
|
||||
// Exclude generated classes like proxies:
|
||||
.or(ElementMatchers.<TypeDescription>isSynthetic())
|
||||
.or(
|
||||
nameStartsWith("datadog.trace.")
|
||||
// FIXME: We should remove this once
|
||||
|
|
Loading…
Reference in New Issue