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())
|
.or(ElementMatchers.<TypeDescription>isAnnotation())
|
||||||
// Unlikely to ever need to instrument an enum:
|
// Unlikely to ever need to instrument an enum:
|
||||||
.or(ElementMatchers.<TypeDescription>isEnum())
|
.or(ElementMatchers.<TypeDescription>isEnum())
|
||||||
// Exclude generated classes like proxies:
|
|
||||||
.or(ElementMatchers.<TypeDescription>isSynthetic())
|
|
||||||
.or(
|
.or(
|
||||||
nameStartsWith("datadog.trace.")
|
nameStartsWith("datadog.trace.")
|
||||||
// FIXME: We should remove this once
|
// FIXME: We should remove this once
|
||||||
|
|
Loading…
Reference in New Issue