如何同时监控多个日志文件
是否有任何 Java API 可以一次监视多个日志文件。即在 TailerListener
中,我们能够监视单个日志文件。
如果有任何 Java API 或任何简单的方法来监视多个日志文件,请告诉我。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有任何 Java API 可以一次监视多个日志文件。即在 TailerListener
中,我们能够监视单个日志文件。
如果有任何 Java API 或任何简单的方法来监视多个日志文件,请告诉我。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
看一下 JNotify。它使用 Linux inotify 子系统。
从网页:
还有一些其他的 java inotify 实现,这是一个很好的 有关该主题的文章。
Take a look at JNotify. It uses the Linux inotify subsystem.
From the web page:
There are a couple of other inotify implementations for java out there, and this is a good article on the topic.
简单地 使用相同的 Tailer 对象 href="http://commons.apache.org/io/apidocs/org/apache/commons/io/input/TailerListener.html" rel="nofollow">
TailerListener
实例。Simply create multiple
Tailer
objects using the sameTailerListener
instance.我不确定我是否理解这个问题。你到底想做什么?
你尝试过使用 log4j 吗?如果我理解这个问题,您可以根据需要制作任意多个不同的日志文件。
I am not sure i understand the question. what exactly are you trying to do?
and did you try using log4j? if i understand the question you can make as many different log files as you like.