乌鸦没有向哨兵报告异常情况



未捕获的异常未报告给哨兵。

我已经运行了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()

如文档中所示,当出现异常时应该调用client.captureException():

try:
    1 / 0
except ZeroDivisionError:
    client.captureException()

wsgi.py中,您应该这样做:

from raven.contrib.django.raven_compat.middleware.wsgi import Sentry
from django.core.handlers.wsgi import WSGIHandler
application = Sentry(WSGIHandler()

首先你需要硬编码你的DSN,因为它包含重要的信息,然后在django上,我认为最好使用python logging

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并共享控制台消息

相关内容

  • 没有找到相关文章

最新更新