我在我的django项目中安装了raven-python,./manage.py raven test
正常工作,但是当我想加载我的应用程序的任何页面(开发服务器正确启动)时,我得到了一个很大的回溯:
Traceback (most recent call last):
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/django/contrib/staticfiles/handlers.py", line 63, in __call__
return self.application(environ, start_response)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/django/core/handlers/wsgi.py", line 177, in __call__
signals.request_started.send(sender=self.__class__, environ=environ)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/django/dispatch/dispatcher.py", line 201, in send
response = receiver(signal=self, sender=sender, **named)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/contrib/django/models.py", line 209, in before_request
self.client.context.activate()
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/contrib/django/models.py", line 55, in <lambda>
__getattr__ = lambda x, o: getattr(get_client(), o)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/contrib/django/models.py", line 135, in get_client
instance = Client(**options)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/contrib/django/client.py", line 138, in __init__
Client.__init__(self, *args, **kwargs)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/base.py", line 222, in __init__
self.hook_libraries(hook_libraries)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/base.py", line 275, in hook_libraries
hook_libraries(libraries)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/breadcrumbs.py", line 364, in hook_libraries
func()
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/utils/__init__.py", line 185, in new_func
rv = func(*args, **kwargs)
File "/home/vince/.virtualenvs/abelujo/lib/python2.7/site-packages/raven/breadcrumbs.py", line 286, in _hook_requests
real_send = Session.send
AttributeError: 'function' object has no attribute 'send'
我不知道在哪里调查。知道发生了什么事吗? 感谢。
raven/django documentation(我不使用在设置结束时定义的客户端)。
我使用django-whitenoise来提供在wsgi.py
上设置的静态文件,但它似乎没有任何影响(我禁用了它)。
Django版本1.8,raven v6.0.0。
Raven config:
RAVEN_CONFIG = {
'dsn': dsn,
# If you are using git, you can also automatically configure the
# release based on the git info.
'release': raven.fetch_git_sha(os.path.dirname(os.pardir)),
}
我的中间件:
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.locale.LocaleMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)
已安装的应用:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.humanize', # for intcomma currency filter only (card show).
'django_extensions',
'bootstrap3',
'bootstrap_admin',
'django.contrib.admin',
# Custom:
'mod_wsgi.server',
'huey.contrib.djhuey',
'rest_framework',
'raven.contrib.django.raven_compat', # sentry
'search', # my app
)
我的wsig.py:
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
application = DjangoWhiteNoise(application)
更新我遇到了与单元测试相同的问题。我最终阻止在调试模式下将哨兵添加到INSTALLED_APPS:
if PROD:
INSTALLED_APPS += 'raven.contrib.django.raven_compat'
并相应地加载记录器:
def get_logger():
"""Get the appropriate logger for PROD or DEBUG mode. On local
development, don't use the sentry_logger (throws errors).
"""
if settings.DEBUG:
return logging.getLogger('debug_logger')
else:
return logging.getLogger('sentry_logger')
答案 0 :(得分:1)
不确定错误消息的原因,但我想初学者可以在中间件或wsgi中安装Raven:https://docs.sentry.io/clients/python/integrations/django/#message-references