Filter/Limit Transactions Before Send
See original GitHub issueHello, I’ve done quite a bit of searching and can’t seem to find what I’m looking for. I enabled performance monitoring by setting traces_sample_rate
> 0. However, I’d like to be able to filter some things from being recorded as transactions (health checks endpoints, …). Is it possible to do this?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:9 (6 by maintainers)
Top Results From Across the Web
Filtering for JavaScript | Sentry Documentation
Configure your SDK to filter error events by using the beforeSend ... Called for transaction events beforeSendTransaction(event) { // Modify or drop the ......
Read more >Read Transaction/s - OpenHIM
filterLimit : The max number of transactions to return ... Before we can send our request to the OpenHIM API we need to...
Read more >What Is the Advanced Fraud Detection Suite (AFDS)?
Hourly Velocity Filter – Limit the total number of transactions ... in the Pending Review state prior to being sent for authorization.
Read more >Filtering and Sampling Events for Python
Configure your SDK to filter error events by using the beforeSend callback method and configuring, enabling, or disabling integrations.
Read more >Fraud Prevention Tools - START Merchant Services
Therefore, if someone is trying to use a stolen card to buy and ship items ... Hourly Velocity Filter – Limit the total...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
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
Within a view you can do:
That will prevent the view from being sent.
@untitaker thanks for the response. This will resolve my immediate needs. A few ideas/suggestions:
transaction_exclude_list = ["/healhz", ...]
@exclude_sentry_transaction
or somethingThanks!