You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any interest in built-in tracing (formerly tokio-trace) support? I'm looking at how to instrument the queries my application (which is already using tracing) makes and without built-in support in rust-postgres I will need to construct wrappers and modify deadpool to return those wrappers, which gets a bit untidy.
The text was updated successfully, but these errors were encountered:
I'd love that too! You could put the wrappers behind a feature flag that is not enabled by default, so deadpool doesn't "break" and users uninterested in the traces can just opt-out of the dependency.
Is there any interest in built-in
tracing
(formerlytokio-trace
) support? I'm looking at how to instrument the queries my application (which is already usingtracing
) makes and without built-in support inrust-postgres
I will need to construct wrappers and modifydeadpool
to return those wrappers, which gets a bit untidy.The text was updated successfully, but these errors were encountered: