-
Notifications
You must be signed in to change notification settings - Fork 860
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
docs: add other default disabled instrumentations #11908
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -225,6 +225,9 @@ For this reason, the following instrumentations are disabled by default: | |||
- `jdbc-datasource` which creates spans whenever the `java.sql.DataSource#getConnection` method is called. | ||||
- `dropwizard-metrics` which might create a very low quality metrics data, because of lack of label/attribute support | ||||
in the Dropwizard metrics API. | ||||
- `mybatis` | ||||
- `spring-boot-actuator-autoconfigure` | ||||
- `spring-batch` | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems there are other disabled instrumentations that you ignored. Such as micrometer. Line 26 in 70e4d05
You can find all of them by searching There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure whether I should include the internal instrumentations, but I've added all the others in 0c2b870 |
||||
|
||||
To enable them, add the `otel.instrumentation.<name>.enabled` system property: | ||||
`-Dotel.instrumentation.jdbc-datasource.enabled=true` |
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.
This enables micrometer metric bridging, see #9762