Linux 日志跟踪观察器

发布于 2024-12-10 08:45:47 字数 108 浏览 0 评论 0原文

我正在寻找一个 Linux 守护进程,它跟踪日志文件并使用一组模式(例如 REGEX)检查每个新的行。在模式匹配的情况下,有一个通知程序脚本,该脚本依次向其他程序发送通知。

——阿夫辛

I'm looking for a linux daemon which tails a log file and examine each new coming line with set of patterns (such as REGEX). In case of pattern matching there be a notifier script which in turn sends notifications to other programs.

-- afshin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剩余の解释 2024-12-17 08:45:47

这可以通过 nxlog 轻松实现,如下所示:

<Input in>
    Module  im_file
    File    "/var/log/custom_app.log"
    Exec    if $raw_event =~ /regexpattern/ exec_async('/path/to/notification_script.sh');
</Input>

<Output out>
    Module  om_null
</Output>

<Route 1>
       Path in => out
</Route>

可能还有十几种其他方法可以解决此问题(rsyslog、syslog-我想到了)。

This can be easily achieved with nxlog with something like this:

<Input in>
    Module  im_file
    File    "/var/log/custom_app.log"
    Exec    if $raw_event =~ /regexpattern/ exec_async('/path/to/notification_script.sh');
</Input>

<Output out>
    Module  om_null
</Output>

<Route 1>
       Path in => out
</Route>

Probably there are a dozen other ways to solve this (rsyslog, syslog-ng come to mind).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文