dd-trace-java
dd-trace-java copied to clipboard
[WIP] use build-time generated index to select instrumenter(s) for known types
What Does This Do
- Generates a build-time mapping from known-types to their matching instrumentation id(s)
- Uses generated index to query once per transformed-type and populate matched instrumentation ids
- Replaces individual
namedmatchers with one that checks the matched instrumentation ids
Motivation
This is faster than the current approach which involves repeated String.equals checks.