tail 文件 - 计算具有给定模式的行数

发布于 2024-09-25 10:50:45 字数 264 浏览 4 评论 0原文

我需要保证特定的字符串出现在活动日志文件中, 表示操作处于活动状态(将此计数提供给触发器)。

考虑到我将远程执行此操作, 我不能使用“tail -f filename”,否则它将无限期地跟随该文件, 因此,我正在考虑抓住一堆最后写下的行并将它们算作“

tail -n8 /var/log/service/service_V138/operations.log| grep \|DONE\| | wc -l

有没有更好的方法?”

I need to guarantee that a specific string is appearing in an active log file,
meaning an operation is alive (feeding this count to a Trigger).

Considering I'll do this remotely,
I can't go with 'tail -f filename' else it would follow the file indefinitely,
thus I'm thinking about grabbing a bunch of last written lines and counting them as,

tail -n8 /var/log/service/service_V138/operations.log| grep \|DONE\| | wc -l

Is there any better way?

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

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

发布评论

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

评论(2

遗失的美好 2024-10-02 10:50:45

您可以通过删除到 wc 的管道并使用 grep -c 来改进这一点。

tail -n8 /var/log/service/service_V138/operations.log | grep -c \|DONE\|

You can improve this a bit, by removing the pipe to wc and using grep -c instead.

tail -n8 /var/log/service/service_V138/operations.log | grep -c \|DONE\|
謸气贵蔟 2024-10-02 10:50:45

less +F -N somelogfile.log ?模式
简单易行

less +F -N somelogfile.log ?pattern
simple and easy

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