如何有效地将 iNotify 与 rSyslog 缓存结合使用?

发布于 2024-12-18 13:54:52 字数 264 浏览 1 评论 0原文

默认情况下,出于性能原因,rsyslog 不会立即将数据同步到日志文件。 参考输出文件同步部分

这是否意味着可能存在一种情况,如果我在系统日志文件上使用 iNotify,我可能会错过某个事件?

到目前为止,我正在使用 tail -f 监视文件,它似乎捕获了所有事件。但我怀疑系统日志缓存可能会导致 inotify 事件被错过。

By default, rsyslog doesn't sync data to log file immediately for performance reasons.
Ref to section Output File Syncing

Does that mean that there could be a scenario where if I am using iNotify on syslog files, I may miss an event?

So far, I am monitoring files using tail -f and it seems to be catching all the events. But I am paranoid that syslog caching may lead to inotify events being missed.

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

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

发布评论

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

评论(2

_畞蕅 2024-12-25 13:54:52

我想这取决于您收到 inotify 事件时正在做什么。如果您正在跟踪最后一个偏移量,读取新事件的 EOF 并更新偏移量,那么您应该没问题(这就是 tail 所做的,除了它使用计时器而不是 inotify (好吧,新事件可能会使用 inotify ))。

I guess it depends on what you're doing when you receive an inotify event. If you're keeping track of the last offset, reading to EOF on a new event, and updating the offset, you should be fine (that's what tail does, except it uses a timer instead of inotify (well, new ones may use inotify)).

冷月断魂刀 2024-12-25 13:54:52

我继续创建了这个 - http://code.google.com/p/logmon/ 根据 @cpugeniusmv 建议

I went ahead and created this- http://code.google.com/p/logmon/ as per @cpugeniusmv suggestion

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