python 合并当天tomcat异常日志 第二版

简介:

把找出的异常文件,归类到指定目录

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# !/usr/bin/env python
# coding:utf-8
import  os,sys,tempfile,time,datetime,re
import  string
from  smtplib  import  SMTP
from  email  import  MIMEText
from  email  import  Header
from  os.path  import  getsize
from  sys  import  exit
from  re  import  compile , IGNORECASE
now  =  datetime.datetime.now()
strdatetime1  =  now.strftime( "%Y%m%d" )
strdatetime  =  now.strftime( "%Y/%m/%d" )
tomcat_log  =  '/home/logs/'
last_position_logfile  =  '/home/back/test/last_position.txt'
#error_list_logfile = '/home/back/test/error_list.txt'
error_list_logfile1  =  '/home/back/test/error_list'
Date = now.strftime( "%d" )
error_list_logfile  =  error_list_logfile1  +  strdatetime1  +  ".txt"
print  error_list_logfile
errorfile = error_list_logfile
pattern  =  compile (r 'Exception|^\t+\bat\b' , IGNORECASE)
#fp = open(error_list_logfile, "w+")
def  writeToTxt(list_name, file_path):
     try :
         fp  =  open (file_path,  "a+" )
         for  item  in  list_name:
             fp.write( str (item)  +  "\n" )
         fp.close()
     except  IOError:
         print ( "fail to open file" )
 
 
# 分析文件找出异常的行
def  analysis_log( file ):
     #parent_file = os.path.dirname(file)
     error_list  =  []
     try :
         data  =  open ( file 'r' )
     except :
         exit()
     for  line  in  data:
         if  pattern.search(line):
             error_list.append( file )
                         #print error_list
                         #errors_list += 1
                         #print "%s" %file
                         break
         data.close()
         if  len (error_list) = = 1 :
             #return ''.join(error_list)
             writeToTxt(error_list,error_list_logfile)
         #return error_list
         #if errors_list == 1:
             #print "%s num is %d" %(file,errors_list)
     #print ''.join(errors_list)
 
def  walk(local_dir):
     for  root, dirs, files  in  os.walk(local_dir):
         for  filespath  in  files:
             # return filespath
             local_file  =  os.path.join(root, filespath)
             # print error_info2
             error_info  =  analysis_log(local_file)
def  walk_dir(home_dir):
     homedir = []
         for  root, dirs, files  in  os.walk(home_dir):
             for  dirname  in  dirs:
                         local_dir  =  os.path.join(root, dirname)
                         #print "Date is %s" %Date
                         result  =  string.find(local_dir,strdatetime)! = - 1
                         if  result:
                             #print local_dir.count('/')
                             if  local_dir.count( '/' ) = = 8 :
                                 homedir.append(local_dir)
         return  homedir
 
 
 
def  make_ex(errorfile):
     with  open (errorfile) as f:
         exfile  =  []
         exdict  =  {}
         for  in  f.readlines():
             expname  =  i.strip().split( '/' )[ 3 ]
             exname  =  i.strip().split( '/' )[ 8 ]
             # if expname not in exfile:
             #     exfile.append(exname)
             estr  =  i.strip()
             #print estr
             youpattern  =  re. compile ( '/(\w+)/(\w+)/(\w+)' )
             result  =  youpattern.match(estr)
             r1  =  result.group()
             r2  =  "ex/"  +  strdatetime1
             r3  =  exname
             rall  =  [r1, r2, r3]
             # exdict[r1]
             rexall  =  "/" .join(rall)  +  '/'
             #print rexall
             if  not  os.path.exists(rexall):
                 os.makedirs(rexall)
             os.system( 'cp -r %s %s'  %  (estr, rexall))
 
 
def  make_diff_ex(c):
     for  in  c:
         i = str (j)
         expname  =  i.strip().split( '/' )[ 3 ]
         exname  =  i.strip().split( '/' )[ 8 ]
         # if expname not in exfile:
         #     exfile.append(exname)
         estr  =  i.strip()
         #print estr
         youpattern  =  re. compile ( '/(\w+)/(\w+)/(\w+)' )
         result  =  youpattern.match(estr)
         if  result:
             r1  =  result.group()
             r2  =  "ex/"  +  strdatetime1
             r3  =  exname
             rall  =  [r1, r2, r3]
             # exdict[r1]
             rexall  =  "/" .join(rall)  +  '/'
             #print rexall
             if  not  os.path.exists(rexall):
                 os.makedirs(rexall)
             os.system( 'cp -r %s %s'  %  (estr, rexall))
         
 
 
 
 
 
'''
def temps(errorfile):
     tmpfile = tempfile.NamedTemporaryFile(delete=False)
     with open(errorfile,'rw') as f:
         readfile="\n".join(f.readlines)
         tmpfile.write(str(f.readlines()))
         return tmpfile
'''
def  temps(errorfile):
     tmpfile = []
     with  open (errorfile, 'r' ) as f:
         tmpfile.append(f.readlines())
         return  tmpfile
 
 
 
def  list_diff(a, b):
     ret  =  []
     for  in  a:
         if  not  in  b:
             ret.append(i)
     return  ret
 
if  __name__  = =  '__main__' :
     if  not  os.path.exists(errorfile):
         fp  =  open (error_list_logfile,  "w+" )
         tomcat_last_dir  =  walk_dir(tomcat_log)
         for  in  tomcat_last_dir:
             walk(i)
         make_ex(errorfile)
     else :
         a = temps(errorfile)
         fp  =  open (error_list_logfile,  "w+" )
         tomcat_last_dir  =  walk_dir(tomcat_log)
         for  in  tomcat_last_dir:
             walk(i)
         #tmpfiles = []
         b = temps(errorfile)
         c = list_diff(a,b)
         if  c:
             make_diff_ex(c)

本来想用tempfile模块的,还要研究下。




本文转自 liqius 51CTO博客,原文链接:http://blog.51cto.com/szgb17/1915646,如需转载请自行联系原作者

相关实践学习
【涂鸦即艺术】基于云应用开发平台CAP部署AI实时生图绘板
【涂鸦即艺术】基于云应用开发平台CAP部署AI实时生图绘板
相关文章
|
运维 监控 算法
时间序列异常检测:MSET-SPRT组合方法的原理和Python代码实现
MSET-SPRT是一种结合多元状态估计技术(MSET)与序贯概率比检验(SPRT)的混合框架,专为高维度、强关联数据流的异常检测设计。MSET通过历史数据建模估计系统预期状态,SPRT基于统计推断判定偏差显著性,二者协同实现精准高效的异常识别。本文以Python为例,展示其在模拟数据中的应用,证明其在工业监控、设备健康管理及网络安全等领域的可靠性与有效性。
1320 13
时间序列异常检测:MSET-SPRT组合方法的原理和Python代码实现
|
8月前
|
缓存 Java 应用服务中间件
Spring Boot配置优化:Tomcat+数据库+缓存+日志,全场景教程
本文详解Spring Boot十大核心配置优化技巧,涵盖Tomcat连接池、数据库连接池、Jackson时区、日志管理、缓存策略、异步线程池等关键配置,结合代码示例与通俗解释,助你轻松掌握高并发场景下的性能调优方法,适用于实际项目落地。
1575 5
|
11月前
|
运维 监控 安全
Syslog 日志分析与异常检测技巧
系统日志蕴含设备运行关键信息,但分析提取颇具挑战。本文详解从命令行工具(如 Grep、Tail、Awk)到专业软件(如 EventLog Analyzer)的全流程日志分析技巧,助你高效挖掘 Syslog 价值,提升运维与安全响应能力。
671 4
|
人工智能 C# Python
处理python异常
本文介绍了Python中的异常处理机制,并实现了一个简单的异常装饰器。通过`try/except`语句捕获异常,结合`finally`子句完成清理工作。为进一步优化代码结构,文章提出了使用装饰器处理异常的方法,避免函数中大量冗长的异常处理语句。通过类封装异常装饰器,多个函数可共享异常处理逻辑,提升代码简洁性和可维护性。总结强调了装饰器在异常处理中的优势,使代码更加优雅高效。
277 27
|
Java 应用服务中间件 Linux
Tomcat运行日志字符错乱/项目启动时控制台日志乱码问题
总结: 通过以上几种方法,概括如下:指定编码格式、设置JVM的文件编码、修改控制台输出编码、修正JSP页面编码和设置过滤器。遵循这些步骤,你可以依次排查和解决Tomcat运行日志字符错乱及项目启动时控制台日志乱码问题。希望这些建议能对你的问题提供有效的解决方案。
2203 16
如何处理python的常见异常问题
在Python语言中,python异常处理机制主要依赖try、except、else、finally和raise五个关键字。本篇文章将为大家详细讲解一下如何处理python的常见异常问题。
|
监控 Java 应用服务中间件
Tomcat log日志解析
理解和解析Tomcat日志文件对于诊断和解决Web应用中的问题至关重要。通过分析 `catalina.out`、`localhost.log`、`localhost_access_log.*.txt`、`manager.log`和 `host-manager.log`等日志文件,可以快速定位和解决问题,确保Tomcat服务器的稳定运行。掌握这些日志解析技巧,可以显著提高运维和开发效率。
1665 13
|
监控 应用服务中间件 数据安全/隐私保护
|
8月前
|
数据采集 机器学习/深度学习 人工智能
Python:现代编程的首选语言
Python:现代编程的首选语言
1407 102
|
8月前
|
数据采集 机器学习/深度学习 算法框架/工具
Python:现代编程的瑞士军刀
Python:现代编程的瑞士军刀
478 104

推荐镜像

更多