-
Notifications
You must be signed in to change notification settings - Fork 1.1k
JDBC pekko and servlet metadata #15967
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
Conversation
| private static final String TMP_DIR = ".telemetry"; | ||
| private static final Pattern MODULE_PATTERN = | ||
| Pattern.compile("(.*?/instrumentation/.*?)(/javaagent|/library|/testing)"); | ||
| Pattern.compile("(.*?/instrumentation/.*)(/javaagent|/library|/testing|/.*?-testing)"); |
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 change is to support servlet:servlet-5.0:jetty12-testing:test
| List.of( | ||
| "asdf", | ||
| "x-test-", | ||
| "test-parameter", |
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.
to filter out servlet.request.parameter.test-parameter from servlet test telemetry
docs/instrumentation-list.yaml
Outdated
| type: list | ||
| default: '' | ||
| - name: otel.instrumentation.servlet.add-trace-id-request-attribute | ||
| description: Adds the trace ID as a request attribute for downstream servlet |
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.
also adds span id
…mentation into jdbc-servlet-metadata
Part of #14096