gpt4 book ai didi

python监控一个日志文件非阻塞

转载 作者:太空宇宙 更新时间:2023-11-04 10:28:01 30 4
gpt4 key购买 nike

我有一个测试 stub ,可以将几条日志消息写入系统日志。

但是,这个系统日志也会被许多其他应用程序更新。所以,基本上,我想做一个 tail -f system.log | grep "application name" 以仅获取适当的日志消息。

我正在研究 dbaez 生成器技巧,我正在尝试将两者结合起来 http://www.dabeaz.com/generators/follow.pyhttp://www.dabeaz.com/generators/apachelog.py

所以,在我的 __main__() 中,我有这样的东西:

try:
dosomeprocessing() #outputs stuff to the log file

在 dosomeprocessing() 中,我运行一个循环,对于每个循环,我想看看是否有任何由我的应用程序引起的新日志消息,不一定将其打印出来,而是将它们存储在某处以进行一些验证.

    logfile = open("/var/adm/messages","r")
loglines = follow(logfile)
logpats = r'I2G(JV)'
logpat = re.compile(logpats)
groups = (logpat.match(line) for line in loglines)
for g in groups:
if g:
print g.groups()

日志看起来像这样:

Feb  4 12:55:27 Someprocessname.py I2G(JV)-300[20448]: [ID 702911   local2.error] [MSG-70047] xxxxxxxxxxxxxxxxxxxxxxx 
Feb 4 12:55:27 Someprocessname.py I2G(JV)-300[20448]: [ID 702911 local2.error] [MSG-70055] xxxxxxxxxxxxxxxxxxxxxxx

除了很多其他gobblygook。

现在,它卡在了 for g in groups 中:

我对 python 和异步编程比较陌生。理想情况下,我希望能够让 tail 与主进程并行运行,并在每个循环中读取新数据。

如果我需要添加更多信息,请告诉我。

最佳答案

我建议您使用 watchdogpyinotify监视日志文件的更改。

此外,我建议记住您阅读的最后位置。收到 IN_MODIFY 通知后,您可以从最后一个位置读取到文件末尾并再次应用循环。此外,如果文件被截断,当它大于文件大小时,将最后位置重置为 0。

例子如下:

import pyinotify
import re
import os


wm = pyinotify.WatchManager()
mask = pyinotify.IN_MODIFY


class EventHandler (pyinotify.ProcessEvent):

def __init__(self, file_path, *args, **kwargs):
super(EventHandler, self).__init__(*args, **kwargs)
self.file_path = file_path
self._last_position = 0
logpats = r'I2G\(JV\)'
self._logpat = re.compile(logpats)

def process_IN_MODIFY(self, event):
print "File changed: ", event.pathname
if self._last_position > os.path.getsize(self.file_path):
self._last_position = 0
with open(self.file_path) as f:
f.seek(self._last_position)
loglines = f.readlines()
self._last_position = f.tell()
groups = (self._logpat.search(line.strip()) for line in loglines)
for g in groups:
if g:
print g.string


handler = EventHandler('some_log.log')
notifier = pyinotify.Notifier(wm, handler)

wm.add_watch(handler.file_path, mask)
notifier.loop()

关于python监控一个日志文件非阻塞,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28348503/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com