Where's the event reference ID in Sentry's hosted service getsentry.com?

1.2k Views Asked by At

In my Django app's custom 500 handler, I can display the reference ID of the Sentry event using the template code {{ request.sentry.id }} -- but where do I see this ID listed in the getsentry.com reporting interface? All I can see is the timecode of the event and the event details and stacktrace etc. there without the reference ID.

NOTE: I'm using the free Sentry tier via a Heroku plug-in. It's Sentry version 6.0.0.

1

There are 1 best solutions below

0
On

Just to fill in blanks, there's two things:

  1. The Event ID (which you is either generated client side or retrieved from the server) can be looked up on the project's page using the search box (e.g. copy paste it into the search field). As of later versions (at the very least, 6.x+) all event IDs will always be present unless some throttling occurred.
  2. The header only shows up if you enable raven.contrib.django.middleware.SentryMiddleware. This is actually recommend as it will guarantee the request object is available within any logging you do (that may have failed to explicitly include it).