Raven python processors API alternative
See original GitHub issueIn Raven python there was a processors
param that could sanitize data client-side before sending to the server https://docs.sentry.io/clients/python/advanced/#sanitizing-data . After upgrading, I noticed that the processors
API has been removed and replaced with before_send
and a send_default_pii
option. This has similar power, but requires a lot more setup than just adding processors raven.processors.SanitizePasswordsProcessor
, etc.
What is the correct way to sanitize passwords, etc. now? It looks like passwords are not sanitized and sent to the Sentry server by default in the new version, which is not acceptable in my environment.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:18 (7 by maintainers)
Top Results From Across the Web
Advanced Usage | Sentry Documentation
This covers some advanced usage scenarios for raven Python. Alternative Installations. If you want to use the latest git version you can get...
Read more >Advanced Usage — Raven 5.32.0 documentation
This covers some advanced usage scenarios for raven Python. Alternative Installations¶ ... These are configured with the processors value. raven.processors.
Read more >Software Infrastructure - RAVEN - Idaho National Laboratory
Hence, RAVEN is coded in Python and is characterized by an ... Aimed to provide standardized APIs for storing the results of any...
Read more >Unified API - Sentry Developer Documentation
New Sentry SDKs should follow the unified API, use consistent terms to refer ... and explicitly support them as alternatives (disposables, stack guards...
Read more >NoSQL Database | RavenDB ACID NoSQL Document Database
A NoSQL Database that's fully transactional - RavenDB NoSQL Document Database allows 1 million reads and 150000 writes per second.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I migrated from raven to sentry-sdk and decided to still use raven processors. Here is the code if it is useful to anyone reaching this issue.
Critical feature still missing or undocumented.