码迷,mamicode.com
首页 > 其他好文 > 详细

5分钟教你学会Django系统错误监控

时间:2018-06-20 10:20:23      阅读:377      评论:0      收藏:0      [点我收藏+]

标签:proc   分享干货   软件   学python   include   学习python   mon   png   ttl   

技术分享图片

一、监控所有的request请求

如何实现系统监控,自动发送错误日志的邮件呢?

只需配置配置settings文件即可。

1.设置发送邮件配置信息

邮件会发送到ADMINS设定的邮件列表中。

SERVER_EMAIL =‘sender@qq.com‘

DEFAULT_FROM_EMAIL =‘sender@qq.com‘

ADMINS = ((‘receiver‘,‘receiver@qq.com‘),)

EMAIL_HOST =‘smtp.exmail.qq.com‘

EMAIL_HOST_USER =‘sender@qq.com‘

EMAIL_HOST_PASSWORD =‘123456‘

EMAIL_BACKEND =‘django.core.mail.backends.smtp.EmailBackend‘

2.配置LOGGING

1)配置mail_admin的handler

level为日志级别

django.utils.log.AdminEmailHandler为django处理系统日志发送邮件的handler

在没有配置filter参数情况下,默认发送系统5XX状态的错误日志

‘handlers‘: {

    ‘mail_admin‘: {

    ‘level‘:‘ERROR‘,

    ‘class‘:‘django.utils.log.AdminEmailHandler‘,

    ‘include_html‘:False,

    }

}

2)配置django.request模块的logger
将django的request模块配置如上的mail_admin handler

‘loggers‘: {

    ‘django.request‘: {

    ‘handlers‘: [‘default‘,‘mail_admin‘],

    ‘propagate‘:True,

    ‘level‘:‘ERROR‘,

    },

}

  在这里还是要推荐下我自己建的Python开发学习群:725479218,群里都是学Python开发的,如果你正在学习Python ,小编欢迎你加入,大家都是软件开发党,不定期分享干货(只有Python软件开发相关的),包括我自己整理的一份2018最新的Python进阶资料和高级开发教程,欢迎进阶中和进想深入Python的小伙伴

二、监控非request请求

如何监控例如系统的定时任务等非用户发起的功能模块,我们可以自定义一个decorator来解决这个问题。

utils.send_exception_email(email_list,title,exc)为发送邮件的方法,可以自己实现,非常简单

def decorator_error_monitor(title):

    def wrap(f):

        def wrapped_f(*args,**kwargs):

            try:

                result = f(*args,**kwargs)

                return result

           except:

               exc = traceback.format_exc()

               utils.send_exception_email(email_list,title,exc)

               raise Exception(exc)

            return wrapped_f

        return wrap

对需要监控的方法使用decorator

@decorator_error_monitor("清算错误")

def do_settlement(users):

    for user in users:

        process_settlement_for_one_user(user)

效果如下
技术分享图片

以上监控方法,简单实用,无需开发额外的日志监控系统,可以在第一时间发现系统的问题,并得知系统的错误日志,帮助快速的定位问题。

5分钟教你学会Django系统错误监控

标签:proc   分享干货   软件   学python   include   学习python   mon   png   ttl   

原文地址:http://blog.51cto.com/13786054/2130760

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!