-
Notifications
You must be signed in to change notification settings - Fork 144
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
Spring Data R2DBC instrumentation #197
Comments
FWIW, R2DBC provides an Invocation proxy (https://github.com/r2dbc/r2dbc-proxy) to intercept calls for obserability/tracing/metrics implementations. |
Might target the H2 database for the initial implementation. |
Remaining driver work bumped from the |
GDownes
added a commit
that referenced
this issue
Apr 26, 2022
…s when using MSSQL via R2DBC. Instruments the SimpleMssqlStatement and ParametrizedMssqlStatement child classes of the R2DBC Statement interface implementation. Higher level R2DBC Statement interface doesn't provide enough information to instrument more generically. Related Github Issue #197 Testing Manual testing Checks [X] Are your contributions backwards compatible with relevant frameworks and APIs? New instrumentation [X] Does your code contain any breaking changes? Please describe. No [X] Does your code introduce any new dependencies? Please describe. Yes, new instrumentation dependencies in new project.
This was referenced Apr 26, 2022
twcrone
pushed a commit
that referenced
this issue
Apr 26, 2022
* R2DBC MSSQL Instrumentation - Instrumentation to capture execute calls when using MSSQL via R2DBC. Instruments the SimpleMssqlStatement and ParametrizedMssqlStatement child classes of the R2DBC Statement interface implementation. Higher level R2DBC Statement interface doesn't provide enough information to instrument more generically. Related Github Issue #197 Testing Manual testing Checks [X] Are your contributions backwards compatible with relevant frameworks and APIs? New instrumentation [X] Does your code contain any breaking changes? Please describe. No [X] Does your code introduce any new dependencies? Please describe. Yes, new instrumentation dependencies in new project. * Change name and query converter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instrumentation and instrumentation tests for R2DBC.
Add R2DBC support for the following drivers:
The text was updated successfully, but these errors were encountered: