码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-03-10 15:27:20      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:

#!/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)

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

标签:

原文地址:http://www.cnblogs.com/martinjinyu/p/4326027.html

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