python多进程下实现日志记录按时间分割


Posted in Python onJuly 22, 2019

python多进程下实现日志记录按时间分割,供大家参考,具体内容如下

原理:自定义日志handler继承TimedRotatingFileHandler,并重写computeRollover与doRollover函数。其中重写computeRollover是为了能按整分钟/小时/天来分割日志,如按天分割,2018-04-10 00:00:00~2018-04-11 00:00:00,是一个半闭半开区间,且不是原意的:从日志创建时间或当前时间开始,到明天的这个时候。

代码如下:

#!/usr/bin/env python
# encoding: utf-8

"""自定义日志处理类"""


import os
import time
from logging.handlers import TimedRotatingFileHandler


class MyLoggingHandler(TimedRotatingFileHandler):

  def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False, atTime=None):
    TimedRotatingFileHandler.__init__(self, filename, when=when, interval=interval, backupCount=backupCount, encoding=encoding, delay=delay, utc=utc, atTime=atTime)

  def computeRollover(self, currentTime):
    # 将时间取整
    t_str = time.strftime(self.suffix, time.localtime(currentTime))
    t = time.mktime(time.strptime(t_str, self.suffix))
    return TimedRotatingFileHandler.computeRollover(self, t)

  def doRollover(self):
    """
    do a rollover; in this case, a date/time stamp is appended to the filename
    when the rollover happens. However, you want the file to be named for the
    start of the interval, not the current time. If there is a backup count,
    then we have to get a list of matching filenames, sort them and remove
    the one with the oldest suffix.
    """
    if self.stream:
      self.stream.close()
      self.stream = None
    # get the time that this sequence started at and make it a TimeTuple
    currentTime = int(time.time())
    dstNow = time.localtime(currentTime)[-1]
    t = self.rolloverAt - self.interval
    if self.utc:
      timeTuple = time.gmtime(t)
    else:
      timeTuple = time.localtime(t)
      dstThen = timeTuple[-1]
      if dstNow != dstThen:
        if dstNow:
          addend = 3600
        else:
          addend = -3600
        timeTuple = time.localtime(t + addend)
    dfn = self.rotation_filename(self.baseFilename + "." +
                   time.strftime(self.suffix, timeTuple))
    # 修改内容--开始
    # 在多进程下,若发现dfn已经存在,则表示已经有其他进程将日志文件按时间切割了,只需重新打开新的日志文件,写入当前日志;
    # 若dfn不存在,则将当前日志文件重命名,并打开新的日志文件
    if not os.path.exists(dfn):
      try:
        self.rotate(self.baseFilename, dfn)
      except FileNotFoundError:
        # 这里会出异常:未找到日志文件,原因是其他进程对该日志文件重命名了,忽略即可,当前日志不会丢失
        pass
    # 修改内容--结束
    # 原内容如下:
    """
    if os.path.exists(dfn):
      os.remove(dfn)
    self.rotate(self.baseFilename, dfn)
    """

    if self.backupCount > 0:
      for s in self.getFilesToDelete():
        os.remove(s)
    if not self.delay:
      self.stream = self._open()
    newRolloverAt = self.computeRollover(currentTime)
    while newRolloverAt <= currentTime:
      newRolloverAt = newRolloverAt + self.interval
    # If DST changes and midnight or weekly rollover, adjust for this.
    if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc:
      dstAtRollover = time.localtime(newRolloverAt)[-1]
      if dstNow != dstAtRollover:
        if not dstNow: # DST kicks in before next rollover, so we need to deduct an hour
          addend = -3600
        else:      # DST bows out before next rollover, so we need to add an hour
          addend = 3600
        newRolloverAt += addend
    self.rolloverAt = newRolloverAt

说明

第一次修改,如有不妥之处,还请指出,不胜感激。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python字符串编码识别模块chardet简单应用
Jun 15 Python
分享Python文本生成二维码实例
Jan 06 Python
Python抓取框架 Scrapy的架构
Aug 12 Python
Python 和 JS 有哪些相同之处
Nov 23 Python
详细分析python3的reduce函数
Dec 05 Python
Python cookbook(数据结构与算法)将多个映射合并为单个映射的方法
Apr 19 Python
Python中按值来获取指定的键
Mar 04 Python
python实现中文文本分句的例子
Jul 15 Python
解决Django中多条件查询的问题
Jul 18 Python
Matplotlib 折线图plot()所有用法详解
Jul 28 Python
python合并多个excel文件的示例
Sep 23 Python
Python QT组件库qtwidgets的使用
Nov 02 Python
Django框架自定义模型管理器与元选项用法分析
Jul 22 #Python
python实现日志按天分割
Jul 22 #Python
python re.sub()替换正则的匹配内容方法
Jul 22 #Python
简单了解python gevent 协程使用及作用
Jul 22 #Python
利用Pandas和Numpy按时间戳将数据以Groupby方式分组
Jul 22 #Python
python+logging+yaml实现日志分割
Jul 22 #Python
python删除列表元素的三种方法(remove,pop,del)
Jul 22 #Python
You might like
php共享内存段示例分享
2014/01/20 PHP
extJs 常用到的增,删,改,查操作代码
2009/12/28 Javascript
IE JS无提示关闭窗口不提示的方法
2010/04/29 Javascript
JS 树形递归实例代码
2010/05/18 Javascript
用JavaScript实现类似于ListBox功能示例代码
2014/03/09 Javascript
js和jquery中循环的退出和继续下一个循环
2014/09/03 Javascript
BootStrap智能表单实战系列(四)表单布局介绍
2016/06/13 Javascript
JavaScript计算值然后把值嵌入到html中的实现方法
2016/10/29 Javascript
通过示例彻底搞懂js闭包
2017/08/10 Javascript
jQuery实现打开网页自动弹出遮罩层或点击弹出遮罩层功能示例
2017/10/19 jQuery
JavaScript闭包原理与用法实例分析
2018/08/10 Javascript
vue elementui form表单验证的实现
2018/11/11 Javascript
JS数组去重的6种方法完整实例
2018/12/08 Javascript
jQuery判断自定义属性data-val用法示例
2019/01/07 jQuery
js 实现 list转换成tree的方法示例(数组到树)
2019/08/18 Javascript
js基础之事件捕获与冒泡原理
2019/10/09 Javascript
vue 实现 rem 布局或vw 布局的方法
2019/11/13 Javascript
[04:50]2019DOTA2高校联赛秋季赛四强集锦
2019/12/27 DOTA
Python语言描述机器学习之Logistic回归算法
2017/12/21 Python
Python tkinter实现的图片移动碰撞动画效果【附源码下载】
2018/01/04 Python
TensorFlow saver指定变量的存取
2018/03/10 Python
修复 Django migration 时遇到的问题解决
2018/06/14 Python
Python实现账号密码输错三次即锁定功能简单示例
2019/03/29 Python
Python实现的删除重复文件或图片功能示例【去重】
2019/04/23 Python
python3.7 的新特性详解
2019/07/25 Python
django 做 migrate 时 表已存在的处理方法
2019/08/31 Python
CSS3 border-radius圆角的实现方法及用法详解
2020/09/14 HTML / CSS
使用css如何制作时间ICON方法实践
2012/11/12 HTML / CSS
HTML5实现WebSocket协议原理浅析
2014/07/07 HTML / CSS
英国手工布艺沙发在线购买:Sofas & Stuff
2018/03/02 全球购物
质检部经理岗位职责
2014/02/19 职场文书
国际贸易专业个人鉴定
2014/02/22 职场文书
公司周年庆活动方案
2014/08/25 职场文书
积极心理学课程心得体会
2016/01/22 职场文书
Python实现GIF动图以及视频卡通化详解
2021/12/06 Python
nginx.conf配置文件结构小结
2022/04/08 Servers