赞
踩
要读取一个正在更新的日志文件(即实时写入的日志文件),你可以使用 Python 的 open()
函数打开文件,并使用 tail -F
或 f.seek(0, os.SEEK_END)
的技巧来实现实时读取。下面是两种方法的示例:
tail -F
的方法:tail -F
等同于–follow=name --retry,根据文件名进行追踪,并保持重试,即该文件被删除或改名后,如果再次创建相同的文件名,会继续追踪。
import subprocess
def tailf(filename):
with subprocess.Popen(['tail', '-F', filename], stdout=subprocess.PIPE, stderr=subprocess.PIPE) as proc:
for line in proc.stdout:
yield line
filename = 'your_log_file.log'
for line in tailf(filename):
print(line.decode('utf-8').strip()) # 输出日志内容
f.seek(0, os.SEEK_END)
的方法:import os
import time
def read_tail(filename, interval=1):
with open(filename, 'rb') as f:
while True:
where = f.tell()
line = f.readline()
if not line:
time.sleep(interval)
f.seek(where)
else:
yield line.decode('utf-8').strip()
filename = 'your_log_file.log'
for line in read_tail(filename):
print(line) # 输出日志内容
这两种方法都会持续监听日志文件的变化,并实时读取新增的日志内容。你可以根据实际需求选择其中一种方法。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。