从特定 rsyslog 配置中删除格式

从特定 rsyslog 配置中删除格式

我正在构建一个具有相当多移动部件的应用程序。其中一些将由 cron 调度,其他则由使用 inotify 侦听文件到达的服务触发。

因为我希望所有日志都以统一的格式结束,所以我发现自己需要告诉rsyslog它应该处理来自特定程序名的所有日志无需任何额外的格式

我已经成功地在运行 rsyslogd 7.4.7 的 Red Hat 7.3 机器上使用以下配置轻松实现了这一点:

$template rawFormat,"%rawmsg%\n"
if $programname == 'forwardit' then /var/log/forwardit.log;rawFormat
& stop

然而,我现在需要在 Debian Stretch 机器上拥有完全相同的配置,运行 rsyslogd 8.24.0,但它并没有真正工作......

1)我尝试只使用相同的配置文件。结果是日志行确实被发送到正确的文件,但它没有使用模板:

<30>Oct  2 09:51:09 forwardit[24602]: {"task": "forward_file", "event": "Failed.", "timestamp": "2018-10-02T07:51:09.973558Z"}

请注意前面出现的奇怪的 <30>,它在我的系统日志中不存在......

2)我认为旧样式模板声明根本不再有效,所以我尝试:

template (name="rawFormat" type="string" string="%rawmsg%\n")
if $programname == 'forwardit' then /var/log/forwardit.log;rawFormat
& stop

相同的结果。

3)朝着同一个方向前进,我尝试更新模板的应用程序:

template (name="rawFormat" type="string" string="%rawmsg%\n")
if $programname == 'forwardit' then action(type="omfile" File="/var/log/forwardit.log" Template="rawFormat")
& stop

实际输出仍然没有变化。

这是/etc/rsyslog.conf文件:

#################
#### MODULES ####
#################

module(load="imuxsock") # provides support for local system logging
module(load="imklog")   # provides kernel logging support
#module(load="immark")  # provides --MARK-- message capability

# provides UDP syslog reception
#module(load="imudp")
#input(type="imudp" port="514")

# provides TCP syslog reception
#module(load="imtcp")
#input(type="imtcp" port="514")


###########################
#### GLOBAL DIRECTIVES ####
###########################

#
# Use traditional timestamp format.
# To enable high precision timestamps, comment out the following line.
#
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat

#
# Set the default permissions for all log files.
#
$FileOwner root
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022

#
# Where to place spool and state files
#
$WorkDirectory /var/spool/rsyslog

#
# Include all config files in /etc/rsyslog.d/
#
$IncludeConfig /etc/rsyslog.d/*.conf


###############
#### RULES ####
###############

#
# First some standard log files.  Log by facility.
#
auth,authpriv.*         /var/log/auth.log
*.*;auth,authpriv.none      -/var/log/syslog
#cron.*             /var/log/cron.log
daemon.*            -/var/log/daemon.log
kern.*              -/var/log/kern.log
lpr.*               -/var/log/lpr.log
mail.*              -/var/log/mail.log
user.*              -/var/log/user.log

#
# Logging for the mail system.  Split it up so that
# it is easy to write scripts to parse these files.
#
mail.info           -/var/log/mail.info
mail.warn           -/var/log/mail.warn
mail.err            /var/log/mail.err

#
# Some "catch-all" log files.
#
*.=debug;\
    auth,authpriv.none;\
    news.none;mail.none -/var/log/debug
*.=info;*.=notice;*.=warn;\
    auth,authpriv.none;\
    cron,daemon.none;\
    mail,news.none      -/var/log/messages

#
# Emergencies are sent to everybody logged in.
#
*.emerg             :omusrmsg:*

答案1

好吧,经过更多的挖掘,我查看了可用的属性并发现了rawmsg-after-pri,这解释了我看到的 <30> 就是 rsyslog 所说的 PRI。

这让我意识到,rawmsg版本之间的实际内容可能已经发生了变化。所以我改变了模板来msg代替使用,一切都很好。

相关内容