-
Notifications
You must be signed in to change notification settings - Fork 873
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validate javaagent suppression keys #12955
base: main
Are you sure you want to change the base?
Conversation
92be235
to
b26e77d
Compare
b26e77d
to
67d8998
Compare
CHANGELOG.md
Outdated
@@ -26,6 +26,12 @@ In preparation for stabilizing HTTP library instrumentation soon: | |||
- `*KtorClientTracing*` and `*KtorServerTracing*` have been deprecated and renamed to | |||
`*KtorClientTelemetry*` and `*KtorServerTelemetry*` | |||
([#12855](https://github.com/open-telemetry/opentelemetry-java-instrumentation/pull/12855)) | |||
- Some Java agent instrumentation suppression keys have been renamed to match their module names: | |||
- `elasticsearch-rest-6.0` --> `elasticsearch-rest-6.4` | |||
- `twitter-util-core` --> `finagle-http` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/finagle-http-23.11/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/finaglehttp/v23_11/TwitterUtilCoreInstrumentationModule.java
Instruments classes in com.twitter:util-core
that finagle depends on, finatra also uses the same dependency but the tests don't seem to require this instrumentation. Maybe the instrumentation should be moved to a separate module? Though this could still be a bit weird as it is tested in the finagle module.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instruments classes in
com.twitter:util-core
that finagle depends on
Thanks, I missed this, I kept the twitter-util-core
suppression key (and just added the normal finagle suppression keys)
Most of #5790, still some TODOs
check-javaagent-instrumentation-suppression-keys.sh
that need follow-ups.