时间:2021-05-22
我们在压力测试过程会收集到很多log,怎样快速从中找到有用信息呢?让python脚本帮我们做这部分工作吧!
废话不说,上代码
环境:win10 + python2.7.14
#-*- encoding: utf-8 -*-#author : beihuijie#version 1.1import reimport sysimport osimport countTimedef getParameters(): ''' get parameters from console command ''' with open(sys.argv[1], "r") as fread: lines = fread.readlines() keywords=[] for line in lines: temp = line.split(', ') keywords.append(temp) for i in range(0, (len(keywords[0]) - 1)): print ' Keyword = %s' % keywords[0][i] return keywords[0]def isFileExists(strfile): ''' check the file whether exists ''' return os.path.isfile(strfile)def Search(keyword, filename): ''' search the keyword in a assign file ''' if(isFileExists(filename) == False): print 'Input filepath is wrong,please check again!' sys.exit() linenum = 1 findtime = 0 with open(filename, 'r') as fread: lines = fread.readlines() for line in lines: rs = re.findall(keyword, line, re.IGNORECASE) if rs: #output linenum of keyword place sys.stdout.write('line:%d '%linenum) lsstr = line.split(keyword) strlength = len(lsstr) findtime = findtime + 1 #print strlength for i in range(strlength): if(i < (strlength - 1)): sys.stdout.write(lsstr[i].strip()) sys.stdout.write(keyword) else: sys.stdout.write(lsstr[i].strip() + '\n') linenum = linenum + 1 print '+----------------------------------------------------------------------------+' print (' Search result: find keyword: %s %d times'%(keyword, findtime)) print '+----------------------------------------------------------------------------+'def executeSearch(): ''' this is a execute search method ''' ls = getParameters() start = countTime.getTime() parameter_number = len(ls) print 'Filename = %s ' % ls[parameter_number - 1] print '--------------------start search-------------------------' if(parameter_number >= 2): for i in range(parameter_number - 1): Search(ls[i], ls[parameter_number - 1]) else: print 'There is a parameter error occured in executeSearch()!' end = countTime.getTime() print '+----------------------------------------------------------------------------+' print ' Total cost time: %s'%countTime.formatTime(end - start) print '+============================================================================+' if __name__=='__main__': executeSearch()countTime.py
#-*- encoding: utf-8 -*-#author : beihuijie#version 1.1import datetimeimport timedef getTime(): ''' return time is format of time(unit is second) ''' return time.time()def getCPUClockTime(): ''' return time is CPU Clock time ''' return time.clock()def formatTime(timevalue): ''' format the time numbers ''' hour = 0 minute = 0 second = 0 if timevalue > 0: #count hour hour = timevalue // 3600 remain = timevalue % 3600 #count minute minute = remain // 60 remain = remain % 60 #count second second = round(remain, 3) return '%.0fh:%.0fm:%.3fs'%(hour, minute, second) if __name__=='__main__': value = 134.45632 print value print formatTime(value)关键字及被扫描的日志路径信息,记录到文件中,以逗号+空格隔开,如,“, ”日志路径信息放到最后。
格式如下:
anr, dalvikvm: Could not find class 'android.app.usage., panic, C:\Users\BHJ\logcat1.log执行结果:
以上这篇python实现扫描日志关键字的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在Python中,with关键字是一个替你管理实现上下文协议对象的好东西。例如:file等。示例如下:from__future__importwith_stat
本文实例讲述了python实现list元素按关键字相加减的方法。分享给大家供大家参考,具体如下:Pythonlist中的元素按关键字相加或相减:#coding=
Python使用type关键字创建类打开命令行窗口,输入python,进入python交互环境python一般创建类使用class关键字即可,测试命令如下:cl
1.self,cls不是关键字在python里面,self,cls不是关键字,完全可以使用自己写的任意变量代替实现一样的效果代码1复制代码代码如下:classM
Python没有类似于Java的private关键字,但也可以为类定义私有属性.只需将属性命名变为以__开头,例如__field.示例代码:classVecto