2017-02-12 20:02:04 -06:00
|
|
|
###############################################################################
|
|
|
|
# Managed by Ansible
|
|
|
|
# file: ansible/roles/acs/templates/rsyslog.conf.j2
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /etc/rsyslog.conf Configuration file for rsyslog.
|
|
|
|
#
|
|
|
|
# For more information see
|
|
|
|
# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
|
|
|
|
|
|
|
|
|
|
|
|
#################
|
|
|
|
#### MODULES ####
|
|
|
|
#################
|
|
|
|
|
|
|
|
$ModLoad imuxsock # provides support for local system logging
|
|
|
|
#$ModLoad imklog # provides kernel logging support
|
|
|
|
#$ModLoad immark # provides --MARK-- message capability
|
|
|
|
|
|
|
|
# provides UDP syslog reception
|
|
|
|
#$ModLoad imudp
|
|
|
|
#$UDPServerRun 514
|
|
|
|
|
|
|
|
# provides TCP syslog reception
|
|
|
|
#$ModLoad imtcp
|
|
|
|
#$InputTCPServerRun 514
|
|
|
|
|
|
|
|
|
|
|
|
###########################
|
|
|
|
#### GLOBAL DIRECTIVES ####
|
|
|
|
###########################
|
2018-06-25 12:48:42 -05:00
|
|
|
|
|
|
|
# Set remote syslog server
|
|
|
|
template (name="ForwardFormatInContainer" type="string" string="<%PRI%>%TIMESTAMP:::date-rfc3339% %HOSTNAME% %syslogtag%%msg:::sp-if-no-1st-sp%%msg%")
|
|
|
|
*.* action(type="omfwd" target="127.0.0.1" port="514" protocol="udp" Template="ForwardFormatInContainer")
|
2017-02-12 20:02:04 -06:00
|
|
|
|
|
|
|
#
|
|
|
|
# Use traditional timestamp format.
|
|
|
|
# To enable high precision timestamps, comment out the following line.
|
|
|
|
#
|
|
|
|
#$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
|
|
|
|
|
|
|
|
# Define a custom template
|
2017-04-21 10:22:44 -05:00
|
|
|
$template SONiCFileFormat,"%TIMESTAMP%.%timestamp:::date-subseconds% %HOSTNAME% %syslogseverity-text:::uppercase% %syslogtag%%msg:::sp-if-no-1st-sp%%msg:::drop-last-lf%\n"
|
|
|
|
$ActionFileDefaultTemplate SONiCFileFormat
|
2017-02-12 20:02:04 -06:00
|
|
|
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2019-01-29 05:41:40 -06:00
|
|
|
#
|
|
|
|
# Suppress duplicate messages and report "message repeated n times"
|
|
|
|
#
|
|
|
|
$RepeatedMsgReduction on
|
2017-02-12 20:02:04 -06:00
|
|
|
|
|
|
|
###############
|
|
|
|
#### RULES ####
|
|
|
|
###############
|