未向哨兵报告未被捕获的例外情况。
我已经运行manage.py raven test
并且我在哨兵处收到测试消息以确认通信正在运行。
我的配置包括:
# settings.py
RAVEN_CONFIG = {
'dsn': '****',
}
SENTRY_CLIENT = 'raven.contrib.django.raven_compat.DjangoClient'
SENTRY_AUTO_LOG_STACKS = True
INSTALLED_APPS += [
'raven.contrib.django.raven_compat',
]
然后
# wsgi.py
from raven.contrib.django.raven_compat.models import client
client.captureException()
答案 0 :(得分:4)
如docs所示,您应该在出现异常时致电client.captureException()
:
try:
1 / 0
except ZeroDivisionError:
client.captureException()
在wsgi.py
中should do改为:
from raven.contrib.django.raven_compat.middleware.wsgi import Sentry
from django.core.handlers.wsgi import WSGIHandler
application = Sentry(WSGIHandler()
答案 1 :(得分:0)
首先,您需要对DSN进行硬编码,因为它包含importante信息, 然后在django上我觉得使用python 记录
会更好RAVEN_CONFIG = {
'dsn': os.environ.get('SENTRY_DSN'),
}
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s [%(pathname)s:%(lineno)d] - %(message)s'
},
'simple': {
'format': '%(levelname)s %(message)s'
},
},
'handlers': {
'sentry': {
'level': 'ERROR',
'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler',
'tags': {'custom-tag': os.environ.get('SENTRY_TAG')},
},
'console': {
'level': 'ERROR',
'class': 'logging.StreamHandler',
'formatter': 'verbose'
}
},
'loggers': {
'django': {
'handlers': ['console', 'sentry'],
'level': 'ERROR',
},
'Your_app {
'handlers': ['console', 'sentry'],
'level': 'ERROR',
},
'raven': {
'level': 'ERROR',
'handlers': ['sentry', 'console'],
'propagate': False,
}
}
}
然后运行python manage.py raven test并共享控制台消息