我們在壓力測試過程會收集到很多l(xiāng)og,怎樣快速從中找到有用信息呢?讓python腳本幫我們做這部分工作吧!
創(chuàng)新互聯(lián)是一家專業(yè)提供內(nèi)江企業(yè)網(wǎng)站建設,專注與網(wǎng)站制作、成都網(wǎng)站建設、H5建站、小程序制作等業(yè)務。10年已為內(nèi)江眾多企業(yè)、政府機構(gòu)等服務。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進行中。廢話不說,上代碼
環(huán)境: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()
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
名稱欄目:python實現(xiàn)掃描日志關鍵字的示例-創(chuàng)新互聯(lián)
文章源于:http://www.rwnh.cn/article24/ccjoce.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設、網(wǎng)站排名、用戶體驗、網(wǎng)站設計、響應式網(wǎng)站、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)