在日志末尾添加文本

发布于 2025-01-09 07:02:02 字数 280 浏览 1 评论 0原文

我实际上使用 Rsyslog 8.24,并将 rsyslog 配置为接受来自多个输入/源的日志。

我想在每个日志的末尾添加系统日志主机名。

示例

  • 旧日志:时间戳、标头、消息
  • 新日志:时间戳、标头、消息 syslog.domain.local

我知道变量 $myhostname 或 $MYHOSTNAME 应该返回 syslog 的主机名,但我不知道不明白如何实现这一点并在每个日志的末尾添加系统日志主机名。

I actually use Rsyslog 8.24 and I configured my rsyslog to accept logs from multiples input/sources.

I want to add the syslog hostname at the end of every logs.

Example :

  • Old log : timestamps, header, message
  • New log : timestamps, header, message syslog.domain.local

I know that the variable $myhostname or $MYHOSTNAME should return the hostname of the syslog but I don't understand how to implement this and add the syslog hostname at the end of each log.

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

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

发布评论

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

评论(1

奈何桥上唱咆哮 2025-01-16 07:02:02

我设法通过添加以下模板并将其绑定到规则集中来完成我想要的操作:

template (name="LogsFormat" type="string" string="%TIMESTAMP% %$year% %syslogtag% %msg% <SYSLOG_HOSTNAME>:%$myhostname%\n")

ruleset(name="RemoteLogPort") {
        if (re_match($msg, "AP:aaa-bbbb-ccc-dddd-ap")) then {
                action(type="omfile" dynaFile="ArubaNetworksPath" template="LogsFormat")
        }
}

PS:ArubaNetworksPath 也是定义日志路径的模板。

I managed to do what I wanted by adding the following template and binding it in the ruleset :

template (name="LogsFormat" type="string" string="%TIMESTAMP% %$year% %syslogtag% %msg% <SYSLOG_HOSTNAME>:%$myhostname%\n")

ruleset(name="RemoteLogPort") {
        if (re_match($msg, "AP:aaa-bbbb-ccc-dddd-ap")) then {
                action(type="omfile" dynaFile="ArubaNetworksPath" template="LogsFormat")
        }
}

PS : ArubaNetworksPath is also a template defining the log path.

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