django 상점 프로젝트용sentry 관리 로그
django
의settings
에서 구성sentry
INSTALLED_APPS = (
'raven.contrib.django.raven_compat',
)
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.abspath(os.pardir)), }
로그 구성:
LOGGING = {
'version': 1,
'disable_existing_loggers': True, #
'root': {
'level': 'WARNING',
'handlers': ['sentry'],
},
'formatters': { #
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s '
'%(process)d %(thread)d %(message)s'
},
},
'handlers': { #
'sentry': {
'level': 'ERROR', # To capture more than ERROR, change to WARNING, INFO, etc.
'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler',
'tags': {'custom-tag': 'x'},
},
'console': { #
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'verbose'
},
'file':{
'level':'INFO',
'class':'logging.handler.RotaingFileHandler',
'filename':os.path.join(os.path.dirname(BASE_DIR),'logs'), #
'maxBytes':300*1024*1024,
'backupCount':10,
'formatter':'verbose',
}
},
'loggers': { #
'django': { #
'level': 'ERROR',
'handlers': ['sentry', 'console', 'file'],
'propagate': True, #
},
}
사용 방법:
import logging
logger = logging.getLogger(__name__)
logger.error('There was some crazy error', exc_info=True, extra={
# Optionally pass a request and we'll grab any information we can
'request': request,
})
오류가 발생한 곳의 상하문을 볼 수 있도록request를 추가했습니다.
오류가 발생하면 홈페이지에 로그인하여 오류 정보를 볼 수 있고 등록할 때 기입한 메일박스에 메일 알림을 보낼 수 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.