2010-10-19 15:35:50 +00:00
|
|
|
#### MODULES ####
|
2011-04-27 13:03:10 +00:00
|
|
|
$ModLoad imuxsock.so # provides support for local system logging
|
|
|
|
$SystemLogRateLimitInterval 0 # disables message dropping, we need all of them
|
|
|
|
$ModLoad imklog.so # provides kernel logging support
|
2010-10-19 15:35:50 +00:00
|
|
|
|
|
|
|
$ModLoad imfile
|
|
|
|
$InputFileName /tmp/X.log
|
|
|
|
$InputFileTag xserver:
|
|
|
|
$InputFileStateFile xserver-statefile
|
|
|
|
$InputFileFacility local1
|
|
|
|
$InputRunFileMonitor
|
|
|
|
$InputFileName /tmp/anaconda-tb-all.log
|
|
|
|
$InputFileTag anaconda-tb:
|
|
|
|
$InputFileStateFile anaconda-tb-statefile
|
|
|
|
$InputFileFacility local1
|
|
|
|
$InputRunFileMonitor
|
|
|
|
|
|
|
|
#### GLOBAL DIRECTIVES ####
|
|
|
|
# Use default timestamp format
|
|
|
|
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
|
|
|
|
|
|
|
|
#### TEMPLATES ####
|
|
|
|
|
|
|
|
$template anaconda_tty4, "%syslogseverity-text:::uppercase% %programname%:%msg%\n"
|
|
|
|
$template anaconda_syslog, "%timestamp:8:$:date-rfc3164%,%timestamp:1:3:date-subseconds% %syslogseverity-text:::uppercase% %programname%:%msg%\n"
|
2011-10-13 14:31:45 +00:00
|
|
|
$template virtio_ForwardFormat, "<%PRI%>%TIMESTAMP:::date-rfc3339% localhost %syslogtag:1:32%%msg:::sp-if-no-1st-sp%%msg%\n"
|
2010-10-19 15:35:50 +00:00
|
|
|
|
|
|
|
#### RULES ####
|
|
|
|
# log everything except anaconda-specific records from local1 (those are stored
|
|
|
|
# directly into files via python logging)
|
|
|
|
*.*;\
|
|
|
|
authpriv.none;\
|
|
|
|
local1.none /tmp/syslog;anaconda_syslog
|
|
|
|
& /dev/tty4;anaconda_tty4
|
|
|
|
|
|
|
|
# ### begin forwarding rule ###
|
|
|
|
# The statement between the begin ... end define a SINGLE forwarding
|
|
|
|
# rule. They belong together, do NOT split them. If you create multiple
|
|
|
|
# forwarding rules, duplicate the whole block!
|
|
|
|
#
|
|
|
|
# An on-disk queue is created for this action. If the remote host is
|
|
|
|
# down, messages are spooled to disk and sent when it is up again.
|
|
|
|
$ActionQueueMaxDiskSpace 1m # space limit (use as much as possible)
|
|
|
|
$ActionQueueSaveOnShutdown off # do not save messages to disk on shutdown
|
|
|
|
$ActionQueueType LinkedList # run asynchronously
|
|
|
|
$ActionResumeRetryCount -1 # infinite retries if host is down
|
|
|
|
# remote host is: name/ip:port, e.g. 192.168.0.1:514, port optional
|
|
|
|
# ### end of the forwarding rule ###
|
|
|
|
|