#Having trouble using Sentry with Modal functions
8 messages · Page 1 of 1 (latest)
following up on this, is there a maximum transaction duration?
most likely the process is being killed before the SDK can send info to Sentry. You can add Sentry.flush() at the end of the execution (which is done automatically by the sentry wrapper)
we have a default limit of 30s for frontend spans (pageload/navigation) but not for backend spans.
note that each transaction is limited to 1000 child spans
what happens to transactions with > 1000 child spans? do only the first 1000 get captured?
also, I have a flush on the decorator. Its consistent which functions show up and which don't. all with the same decorator
I'll add that when i have sentry with debug=True, i see logs for the envelope being manually flushed before container shutdown.