Python 定时提取实时日志的程序

这是一个定时读取 实时日志文件的程序 。 目标文件是target_file. 它是应用程序实时写入的。
我要做的是,每个5秒钟,提取一次该日志文件中的内容,然后生成另一个文件。最后把这些文件都汇总。 请多多指教。

#!/usr/local/bin/python
# coding:utf-8

import fileinput
import time
import os

target_file = 'user.log'
init_flag = True  # 初次加载程序
time_kick = 5

record_count = 0

while True:
    print '当前读到了', record_count
    #没有日志文件,等待
    if not os.path.exists(target_file):
        print 'target_file not exist'
        time.sleep(time_kick)
        continue

    try:
        ip  = '10.10.1.100'
        easytime = time.strftime('%Y%m%d_%H%M%S', time.localtime())
        file_name = '%s_user_%s.log' % (ip,easytime)
        f_w = open(file_name, 'w')
        if init_flag:
            #读取整个文件
            for eachline in fileinput.input(target_file):
                print eachline
                f_w.write(eachline)
                record_count += 1

            init_flag = False
        else:
            #如果总行数小于当前行,那么认为文件更新了,从第一行开始读。
            total_count = os.popen('wc -l %s' % target_file).read().split()[0]
            total_count = int(total_count)
            if total_count < record_count:
                record_count = 0

            for eachline in fileinput.input(target_file):
                line_no = fileinput.filelineno()
                if line_no > record_count:
                    print eachline
                    f_w.write(eachline)
                    record_count += 1

        f_w.close()
    except:
        pass
    time.sleep(time_kick)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值