Syslog 心跳和监控

发布于 2024-12-23 22:03:13 字数 229 浏览 2 评论 0原文

有谁知道系统日志如何提供任何心跳机制,或者即使我无法找到太多信息,也知道系统日志是否提供任何心跳机制?

我正在特别考虑如何监视提供系统日志消息的设备。

我并不是特别希望使用外部解决方案,而是系统日志可能会自行提供一些东西,如果出现问题,可以对其进行监视/询问和标记。

或者他们是一个标准的轻量级基于 TCP 的心跳协议,运行在 win/linux/bsd/solaris/aix/hp-ux 上?

Does anybody know how or even if, since I can't locate much on it, syslog offers any heartbeat mechanism?

I'm specifically thinking about how to monitor the devices that offer up syslog messages.

I'm not specifically looking to use an external solution, but instead something syslog possibly offers itself, which can be monitored/interrogated and flagged if something is down.

Or is their a standard lightweight tcp-based heartbeat protocol which runs on win/linux/bsd/solaris/aix/hp-ux?

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

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

发布评论

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

评论(1

冷清清 2024-12-30 22:03:13

动机

也许您已经解决了问题,但没有发布您的解决方案,或者您可能已经放弃了,并且仍在等待。我有同样的问题并找到了答案。这里是:

SYSLOG

Syslog 本身提供“标记”。其实这就是心跳。

系统日志条目如下所示:

Nov 23 17:37:00 192.168.160.115 -- MARK --

mark:syslogd 本身生成的消息,仅包含时间戳和字符串“--MARK--”。要指定标记之间应经过多少分钟,请使用 -m [分钟] 标志调用 syslogd。

[来源:http://www.linuxjournal.com/article/5476 ]

NXLOG

如果您希望 NXLOG 也能做到这一点,您可以使用模块 im_mark 来完成此操作:

<Input mark>
   Module        im_mark         // Module
   MarkInterval  40              // Interval in minutes
   Mark          -- MARK --      // Message
</Input>

[来源:https://nxlog.org/node/295#im_mark ]

Windows 上 nxlog 的日志如下所示:

Nov 24 09:21:57 192.168.160.123 MSWinEventLog   1       N/A     77
Tue Nov 24 09:21:57 2015        N/A     nxlog-ce        N/A     N/A    
N/A     WKS-HC02        N/A  -- MARK --       N/A

您可以使用以下正则表达式来触发此类日志条目:

(\w+\s+\d+\s+\d+:\d+:\d+) ([\w.-]+).*--\s*MARK\s*--

Motivation

Maybe you already solved your problem but didn't post your solution or maybe you gave up on that and you're still waiting. I had the same problem and found an answer. Here it is:

SYSLOG

Syslog itself offers "mark". Actually this is a heartbeat.

An syslog entry looks like this:

Nov 23 17:37:00 192.168.160.115 -- MARK --

mark: messages generated by syslogd itself that contain only a timestamp and the string “--MARK--”. To specify how many minutes should transpire between marks, invoke syslogd with the -m [minutes] flag.

[Source: http://www.linuxjournal.com/article/5476 ]

NXLOG

If you want the same for NXLOG you can do this by using the Module im_mark:

<Input mark>
   Module        im_mark         // Module
   MarkInterval  40              // Interval in minutes
   Mark          -- MARK --      // Message
</Input>

[Source: https://nxlog.org/node/295#im_mark ]

A log from nxlog on Windows looks like this:

Nov 24 09:21:57 192.168.160.123 MSWinEventLog   1       N/A     77
Tue Nov 24 09:21:57 2015        N/A     nxlog-ce        N/A     N/A    
N/A     WKS-HC02        N/A  -- MARK --       N/A

You could use the following RegEx to trigger on such logentries:

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