c6e706be16f977a902719e8b94f3c67036c3685c
[matthijs/servers/drsnuggles.git] / etc / rsyslog.conf
1 #  /etc/rsyslog.conf    Configuration file for rsyslog v3.
2 #
3 #                       For more information see 
4 #                       /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
5
6
7 #################
8 #### MODULES ####
9 #################
10
11 $ModLoad imuxsock # provides support for local system logging
12 $ModLoad immark   # provides --MARK-- message capability
13 $MarkMessagePeriod  900 # mark messages appear every 15 Minutes
14
15 ###########################
16 #### GLOBAL DIRECTIVES ####
17 ###########################
18
19 #
20 # Use traditional timestamp format.
21 # To enable high precision timestamps, comment out the following line.
22 #
23 $ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
24
25 #
26 # Set the default permissions for all log files.
27 #
28 $FileOwner root
29 $FileGroup adm
30 $FileCreateMode 0640
31 $DirCreateMode 0755
32
33 #
34 # Include all config files in /etc/rsyslog.d/
35 #
36 $IncludeConfig /etc/rsyslog.d/*.conf
37
38 # Store any queues here. This directory is not created automatically, so it
39 # must already exist!
40 $WorkDirectory /var/spool/rsyslog
41
42 # Use a (disk-assisted) main queue
43 # Use a linked list for queueing
44 $MainMsgQueueType LinkedList
45 # Name to use for the queue file
46 $MainMsgQueueFileName main
47 # save in-memory data if rsyslog shuts down
48 $MainMsgQueueSaveOnShutdown on
49
50 #######################
51 #### Local logging ####
52 #######################
53
54 #
55 # Log each facility into its own log
56 auth,authpriv.*                 /var/log/rsyslog/auth.log
57 cron.*                          -/var/log/rsyslog/user.log
58 daemon.*                        -/var/log/rsyslog/daemon.log
59 kern.*                          -/var/log/rsyslog/kern.log
60 lpr.*                           -/var/log/rsyslog/lpr.log
61 mail.*                          -/var/log/rsyslog/mail.log
62 user.*                          -/var/log/rsyslog/user.log
63 local0,local1,local2,\
64         local3,local4,local5,\
65         local6,local7.*         -/var/log/rsyslog/local.log
66
67 # Omitted facilities: syslog, news, uucp, ftp
68
69 # All logs end up in syslog as weel as the corresponding facility log above
70 # (except for auth, mail which only end up in the facility log for privacy
71 # reasons and debug which only ends up in the debug log below to prevent
72 # flooding).
73 *.*;\
74         *.!=debug;\
75         auth,authpriv.none;\
76         mail.none               -/var/log/rsyslog/syslog
77
78 # Debug entries end up in debug.log as well as the corresponding facility log
79 # above (except for auth and mail, which only end up in the facility logs for
80 # privacy reasons).
81 *.=debug;\
82         auth,authpriv.none;\
83         news.none;mail.none     -/var/log/rsyslog/debug.log
84 #
85 # Emergencies are sent to everybody logged in.
86 #
87 *.emerg                         *
88
89 ########################
90 #### Remote logging ####
91 ########################
92
93 # Send all log entries to the log vserver, but queue them in memory as well as
94 # on disk if needed.
95 # Use a linked list for queueing
96 $ActionQueueType LinkedList
97 # Name to use for the queue file
98 $ActionQueueFileName remote
99 # infinite retries on insert failure
100 $ActionResumeRetryCount -1
101 # save in-memory data if rsyslog shuts down
102 $ActionQueueSaveOnShutdown on
103 *.*                             @@log;RSYSLOG_SyslogProtocol23Format