Replies: 1 comment
-
The 1MB limit on transactions is a hard limit and can not be changed. Another thing that might affect you is that one transaction has a limit of 1000 spans per transaction. (In your case a database request is one span and because they all happen in one request to your endpoint end up in the same transaction) This span limit can be changed like this: sentry_sdk.init(
dsn=...,
_experiments={
"max_spans": 2000,
} Another thing you could do is use a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have endpoint which have like 10k requests to database so event object becoming more than 1mb and it didn't even showing on sentry. How can I increase this size?
Beta Was this translation helpful? Give feedback.
All reactions