How do I ignore some transactions in my application so that my cost does not reach millions. Is there a way to also customize the% I want to capture for a given transaction?
It would be interesting because it would still make it possible to monitor some function with thousands of transactions but only with a sample of 0.5% for example.
For python client you can use traces_sample_rate=1.0 (1.0 - 100%, 0.1 - 10%). You can find information about configuration options in documentation of your Sentry SKD Client.