before_send not scrubbing all headers/query strings #1753
-
Hello, I recently implemented a Is there a reason why the N+1 issues would still show the keys in the query strings/headers? When I tested by manually adding an I am filtering with python sentry_sdk module and any feedback is greatly appreciated! PS: There is a similar topic about python sentry_sdk not filtering here |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @robbieallen-fareharbor, thanks for reporting this! This is a special edge case. The N+1 issues are not sent by the SDK but are created in Sentry.io by the performance data the SDK sends. The performance data (called transactions) is not filtered through |
Beta Was this translation helpful? Give feedback.
Hey @robbieallen-fareharbor, thanks for reporting this!
This is a special edge case.
The N+1 issues are not sent by the SDK but are created in Sentry.io by the performance data the SDK sends. The performance data (called transactions) is not filtered through
beforeSend
. We are currently work on abeforeSendTransaction
where you can filter fields from transactions. But it is not there yet. The progress can be watched here: #1738