我在我的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文档(我不使用设置末尾定义的客户端(。
我使用django-whitenoise提供静态文件,该文件设置在wsgi.py
上,但似乎没有任何影响(我禁用了它(。Django版本1.8,Raven V6.0.0。
乌鸦配置:
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)
更新我在单位测试中也有同样的问题。我最终阻止在调试模式下将哨兵添加到安装_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')
不确定错误消息的原因,但是我想对于初学者,您可以在中间件或WSGI中安装raven:https://docs.sentry.io/clients/python/集成/django/#消息 - 引用