One thing to make sure that you have added the sentry and raven to your INSTALLED_APPS in settings.py (after pip install sentry ).
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', # Uncomment the next line to enable the admin: 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', 'sentry', 'raven.contrib.django', )
Also, make sure you add the watch device to your urls.py with:
url(r'^sentry/',include('sentry.web.urls')),
source share