thinkphp日志分割成每个请求一个文件

#!/usr/bin
#coding:utf-8

import os, re, errno

ls = os.popen(‘ls *.log‘).readlines()

dirs = []
lines = []

for line in ls:
if line.strip():
dirs.append(re.split(‘-|\.‘, line.strip())[-2])
lines.append(line.strip())

for dir in list(set(dirs)):
# the actual code
try:
os.makedirs(dir)
print ‘create dir success: ‘+dir
except OSError as exc:
if exc.errno == errno.EEXIST and os.path.isdir(dir):
pass

flag = dir.replace(‘_‘, ‘-‘) + ‘T‘
for l in [line for line in lines if line.endswith(dir+‘.log‘)]:
cmd = ‘csplit ‘+ l +‘ -f ‘+l+‘_ /‘+ flag +‘[0-9][0-9]:[0-9][0-9]:[0-9][0-9]\+08:00\ \]\ [0-9]/ {*}‘
os.system(cmd)

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。