Hi, I’m just getting started with Performance monitoring in my Django project. I’m wanting to reduce the transaction volume by using a traces_sampler filter function: Sampling Transactions for Django | Sentry Documentation
Is it possible to always send a transaction if it’s run time is slow, say more then 1 second?
I see that there is start_timestamp in sampling_context. But the traces_sampler function appears to be called before my Django view function.
Is there a way to filter samples after my code has run?
Thanks!