Hi there,
I am trying to get Sentry to log stack traces for messages that don’t actually have associated exceptions. I’m doing this by adding extra={'stack'=True}
to the logging method, as described here: https://docs.sentry.io/clients/python/integrations/logging/#usage . When I look at it in Sentry, though, it only shows one frame of the stack trace up to the level of uwsgi. This is a Django project.
Has anyone encountered this before? Is there a way to log the full trace?