Events not showing in dashboard

Hi,

I just installed the new SDK in a project that hadn’t Sentry before, I created a new project in Sentry and followed the new SDK instructions (https://sentry.io/soccer-league/python/getting-started/python/), copied the init() call using the provided value and tried to put it first in settings.py, then in manage.py (it’s a Django project) but so far, haven’t been able to see any errors being recorded in Sentry, is there anything else I may be skipping? Or something not done properly?

To extend and clarify, I’m just using a simple x = 29 / 0 statement to raise an exception and cause the SDK to pick it up and send it to the dashboard, without any luck up to this point.

Thanks.

Hi,

For integrating with Django specifically, you need to add additional options to register the appropriate errorhandlers.

In other words, the setup wizard offers two options: “Python” and “Django”. You need to pick Django: https://sentry.io/soccer-league/python/getting-started/python-django/