我正在设置 RSYSLOG 中继服务器。我只想将从远程系统收到的日志中继到目标服务器。我发现了一些标记来自本地目录的日志的示例,但没有标记来自远程系统的传入日志的示例。理想情况下,我不想在此中继上保留任何日志,而只是将它们直接传递到目标日志服务器。
if $fromhost-ip=='192.168.1.10' then /var/log/app1/app1.log
module(load="imfile" PollingInterval="10") #needs to be done just once
# File 1
input(type="imfile"
File="/var/log/app1/app1.log"
Tag="app1:"
Severity="Informational"
Facility="local7")
if $syslogtag == "app1:" then @@192.168.1.50:1514
任何帮助,将不胜感激!
谢谢!