小試python – 記錄檔歸併處理

來源:互聯網
上載者:User

應用前提:N台Web機,每天產生大量的日誌,先用python指令碼從伺服器取出,並按xxx_ip_yyyyMMdd_hhmmss.log格式收集,tar.gz後傳到本機,用python將主要的Cause by Error等重要錯誤資訊提取到csv檔案,供專人追蹤記錄檔。

 

#! /usr/bin/env python<br /># -*- coding: utf-8 -*-<br />#@author jinqinghua@gmail.com<br />#@version 2010-08-17 02:21<br />import os<br />import string<br />import fileinput<br />#日誌的位置<br />dir_log = r"D:/python/logs"<br />#日誌合并後的檔案位置<br />file_csv = os.path.join(r"F:", "log.csv" )<br />if os.path.exists(file_csv):<br /> os.remove(file_csv)</p><p>output = open(file_csv, 'w+')<br />output.write("ip,line number,error type, error cause/n")<br />for file in os.listdir(dir_log):<br /> if not file.endswith(".log"):<br /> print "WARN:%s is not a log file" %(file)<br /> continue<br /> print "INFO:process file %s" %(file)<br /> for line in fileinput.input(os.path.join(dir_log, file)):<br /> for type in ('Caused ', ): #'ERROR ', 'WARN '):<br /> if line.find(type) != -1 :<br /> output.write("%s,%s,%s,%s" %(file[4:16], fileinput.filelineno(), type, string.replace(line, ",", "|")))<br /> fileinput.close()<br />output.close<br />print "done, python is great!"</p><p> 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.