I'm using Sentry (Raven 3.4.1) on a user-facing Python/Pyramid webapp. Sentry seems to have the ability to track which and how many users experienced a certain exception. (See for example the Sentry 6.2.0 changelog, which mentions: "Streams which have recorded user data will now show the number of unique users an event has happened to.") How do I supply this information to Raven, so that it shows up in Sentry?
Can I only do this if I pass the exception to Raven manually? Right now, I'm using a SentryHandler
logging handler, attached to the root logger, and an egg:raven#raven
filter in the PasteDeploy pipeline. (Following the official Raven configuration docs for Pyramid closely.)
Is there a good trick to generally pass this information to Raven? Can I maybe set a local variable with a certain name somewhere at the bottom of my stack, as soon as I have loaded the user's session, and Raven will pick it up automatically? What's the best practice here?
I suspect this has to do with what I'm trying to do, but I can't find anything about it in the Raven docs.
The only way I found to do this was to overwrite some internal methods of Raven.
The basic idea is that we want to modify the
handle_exception()
method on theSentry
class of Raven. There, I can inject thesentry.interfaces.User
interface I already mentioned in the question. To do this, I need my own filter factory, which I can then use instead of the default Paste filter that comes with Raven and which uses my own subclass ofSentry
.In my project, I have a file
sentry.py
:In my
setup.py
, I declare the filter factory as an entry point:Now I can use the entry point to declare a filter in my configuration .ini file and integrate it into the Paste pipeline, just as described in the Paste docs:
So now, whenever the Sentry filter catches an exception, it will not only store data about the HTTP request, but also about the user—assuming it can find information about that in the
environ
. All I have to do now is inject the user information from the session there, which I'm doing with a custom tween:That all seems unreasonably complicated, but I'm happy that I found a way to make it work, at last.