python实现扫描日志关键字的示例


Posted in Python onApril 28, 2018

我们在压力测试过程会收集到很多log,怎样快速从中找到有用信息呢?让python脚本帮我们做这部分工作吧!

废话不说,上代码

环境:win10 + python2.7.14

#-*- encoding: utf-8 -*-
#author : beihuijie
#version 1.1
import re
import sys
import os
import countTime
def 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.1
import datetime
import time
def 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实现扫描日志关键字的示例

以上这篇python实现扫描日志关键字的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
理解python多线程(python多线程简明教程)
Jun 09 Python
详解Django通用视图中的函数包装
Jul 21 Python
Python2.7基于淘宝接口获取IP地址所在地理位置的方法【测试可用】
Jun 07 Python
Python代码实现KNN算法
Dec 20 Python
Python3的介绍、安装和命令行的认识(推荐)
Oct 20 Python
python事件驱动event实现详解
Nov 21 Python
matplotlib实现热成像图colorbar和极坐标图的方法
Dec 13 Python
详解用python写网络爬虫-爬取新浪微博评论
May 10 Python
pyqt5让图片自适应QLabel大小上以及移除已显示的图片方法
Jun 21 Python
python类的实例化问题解决
Aug 31 Python
python3跳出一个循环的实例操作
Aug 18 Python
TensorFlow的自动求导原理分析
May 26 Python
python socket网络编程之粘包问题详解
Apr 28 #Python
在Windows中设置Python环境变量的实例讲解
Apr 28 #Python
PyTorch快速搭建神经网络及其保存提取方法详解
Apr 28 #Python
对Python中type打开文件的方式介绍
Apr 28 #Python
PyTorch上搭建简单神经网络实现回归和分类的示例
Apr 28 #Python
TensorFlow实现非线性支持向量机的实现方法
Apr 28 #Python
python 通过logging写入日志到文件和控制台的实例
Apr 28 #Python
You might like
PHP下用rmdir实现删除目录的三种方法小结
2008/04/20 PHP
PHP解析RSS的方法
2015/03/05 PHP
深入浅析PHP7.0新特征(五大新特征)
2015/10/29 PHP
yii2 resetful 授权验证详解
2017/05/18 PHP
PHP使用标准库spl实现的观察者模式示例
2018/08/04 PHP
PHP中使用CURL发送get/post请求上传图片批处理功能
2018/10/15 PHP
php源码的安装方法和实例
2019/09/26 PHP
js获取html参数及向swf传递参数应用介绍
2013/02/18 Javascript
jQuery.Validate验证库的使用介绍
2013/04/26 Javascript
如何将网页表格内容导入excel
2014/02/18 Javascript
Javascript获取当前日期的农历日期代码
2014/10/08 Javascript
深入理解JavaScript系列(17):面向对象编程之概论详细介绍
2015/03/04 Javascript
基于JQuery和CSS3实现仿Apple TV海报背景视觉差特效源码分享
2015/09/21 Javascript
jQuery子元素过滤选择器用法示例
2016/09/09 Javascript
AngularJS中过滤器的使用与自定义实例代码
2016/09/17 Javascript
jQuery延迟执行的实现方法
2016/12/21 Javascript
vue组件传递对象中实现单向绑定的示例
2018/02/28 Javascript
vue vue-Router默认hash模式修改为history需要做的修改详解
2018/09/13 Javascript
30分钟快速实现小程序语音识别功能
2018/11/27 Javascript
js 解析 JSON 数据简单示例
2020/04/21 Javascript
Python基于PycURL实现POST的方法
2015/07/25 Python
Python PyQt5实现的简易计算器功能示例
2017/08/23 Python
Python最火、R极具潜力 2017机器学习调查报告
2017/12/11 Python
Python爬虫爬取新浪微博内容示例【基于代理IP】
2018/08/03 Python
python得到电脑的开机时间方法
2018/10/15 Python
Python startswith()和endswith() 方法原理解析
2020/04/28 Python
Kathmandu美国网站:新西兰户外运动品牌
2019/03/23 全球购物
DNA基因检测和分析:23andMe
2019/05/01 全球购物
大学生毕业自荐信
2013/10/10 职场文书
九年级政治教学反思
2014/02/06 职场文书
同学会主持词
2014/03/18 职场文书
政府个人对照检查材料
2014/08/28 职场文书
区域经理岗位职责
2015/02/02 职场文书
2015年城管个人工作总结范文
2015/04/20 职场文书
机关单位2016年法制宣传日活动总结
2016/04/01 职场文书
Elasticsearch 索引操作和增删改查
2022/04/19 Python