Note that there are some explanatory texts on larger screens.

plurals
  1. PODjango Sentry server hangs
    text
    copied!<p>I installed Sentry v2.0, django 1.3, and python 2.7</p> <p>I run sentry start, then I visit my server url at 0.0.0.0:9000 where it just hangs. Sometimes I get a HTTP code 302, other times I get a HTTP code 200 (output to the console). Any ideas?</p> <p>My ~/.sentry/sentry.conf.py looks like:</p> <pre><code>import os.path from sentry.conf.server import * ROOT = os.path.dirname(__file__) DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'sentry', 'USER': 'myusername', 'PASSWORD': 'mypassword', 'HOST': '', 'PORT': '', } } SENTRY_KEY = 'my-key' SENTRY_PUBLIC = True SENTRY_WEB_HOST = '0.0.0.0' SENTRY_WEB_PORT = 9000 </code></pre> <p>In my settings.py file I have: </p> <pre><code>INSTALLED_APPS = { ... 'sentry', 'raven.contrib.django', ... } LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'formatters': { 'verbose': { 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s' }, 'medium': { 'format': '%(asctime)s %(levelname)s (%(module)s): %(message)s' }, 'simple': { 'format': '%(levelname)s: %(message)s' }, }, 'handlers': { 'console': { 'level': 'DEBUG', 'class': 'logging.StreamHandler', 'formatter': 'simple' }, 'sentry': { 'level': 'ERROR', 'class': 'raven.contrib.django.handlers.SentryHandler' } }, 'loggers': { 'raven': { 'level': 'DEBUG', 'handlers': ['console'], 'propagate': False, }, 'sentry.errors': { 'level': 'DEBUG', 'handlers': ['console'], 'propagate': False, }, ... } } SENTRY_KEY = 'my-key' SENTRY_SERVERS=['0.0.0.0:9000'] SENTRY_CLIENT='raven.contrib.django.DjangoClient' </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload