9dda8ff70b89390215c2bf681718810ef64131f2
[mirror/dsa-puppet.git] / modules / syslog_ng / templates / syslog-ng.conf.erb
1 <%- if has_variable?("syslogversion") and @syslogversion.to_s == "3.5" -%>
2 @version: 3.5
3 @include "scl.conf"
4 <%- elsif has_variable?("syslogversion") and @syslogversion.to_s == "3.8" -%>
5 @version: 3.8
6 @include "scl.conf"
7 <%- elsif has_variable?("syslogversion") and @syslogversion.to_s == "3.19" -%>
8 @version: 3.19
9 @include "scl.conf"
10 <%- else -%>
11 @version: 3.3
12 @include "scl.conf"
13 <%- end -%>
14
15 ##
16 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
17 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
18 ##
19
20 #
21 # Configuration file for syslog-ng under Debian
22 #
23 # attempts at reproducing default syslog behavior
24
25 # the standard syslog levels are (in descending order of priority):
26 # emerg alert crit err warning notice info debug
27 # the aliases "error", "panic", and "warn" are deprecated
28 # the "none" priority found in the original syslogd configuration is
29 # only used in internal messages created by syslogd
30
31
32 ######
33 # options
34
35 options {
36         # disable the chained hostname format in logs
37         # (default is enabled)
38         chain_hostnames(1);
39
40         # the time to wait before a died connection is re-established
41         # (default is 60)
42         time_reopen(10);
43
44         # the time to wait before an idle destination file is closed
45         # (default is 60)
46         time_reap(360);
47
48         # the number of lines buffered before written to file
49         # you might want to increase this if your disk isn't catching with
50         # all the log messages you get or if you want less disk activity
51         # (say on a laptop)
52         # (default is 0)
53         #sync(0);
54
55         # the number of lines fitting in the output queue
56         log_fifo_size(10000);
57
58         # enable or disable directory creation for destination files
59         create_dirs(yes);
60
61         # default owner, group, and permissions for log files
62         # (defaults are 0, 0, 0600)
63         #owner(root);
64         group(adm);
65         perm(0640);
66
67         # default owner, group, and permissions for created directories
68         # (defaults are 0, 0, 0700)
69         #dir_owner(root);
70         #dir_group(root);
71         dir_perm(0755);
72
73         # enable or disable DNS usage
74         # syslog-ng blocks on DNS queries, so enabling DNS may lead to
75         # a Denial of Service attack
76         # (default is yes)
77         use_dns(no);
78
79         # maximum length of message in bytes
80         # this is only limited by the program listening on the /dev/log Unix
81         # socket, glibc can handle arbitrary length log messages, but -- for
82         # example -- syslogd accepts only 1024 bytes
83         # (default is 2048)
84         #log_msg_size(2048);
85
86         #Disable statistic log messages.
87         stats_freq(0);
88
89         # Some program send log messages through a private implementation.
90         # and sometimes that implementation is bad. If this happen syslog-ng
91         # may recognise the program name as hostname. Whit this option
92         # we tell the syslog-ng that if a hostname match this regexp than that
93         # is not a real hostname.
94         bad_hostname("^gconfd$");
95
96         keep_hostname(no);
97
98         # We believe our own clock more than we believe the client clock.
99         keep_timestamp(no);
100 };
101
102
103 ######
104 # sources
105
106 # all known message sources
107 source s_local {
108         # message generated by Syslog-NG
109         internal();
110         system();
111 <%- if has_variable?("haproxy") && @haproxy -%>
112         unix-stream("/var/lib/haproxy/dev/log");
113 <%- end -%>
114 };
115
116 <%- if (@hostname == "lotti") || (@hostname == "loghost-grnet-01") || (@hostname == "loghost-osuosl-01") -%>
117 source s_network {
118         tcp6(port(5140) max-connections(400)
119                 tls( key_file("/etc/exim4/ssl/thishost.key")
120                      cert_file("/etc/exim4/ssl/thishost.crt")
121                      ca_dir("/etc/exim4/ssl/")
122                 )
123         );
124 };
125
126 source s_network_fastly {
127         tcp6(port(5141) max-connections(100)
128                 tls( key_file("/etc/exim4/ssl/thishost.key")
129                      cert_file("/etc/exim4/ssl/thishost.crt")
130                      peer-verify(optional-untrusted))
131         );
132 };
133 <%- end -%>
134
135
136 ######
137 # destinations
138
139 # some standard log files
140 destination df_auth { file("/var/log/auth.log"); };
141 destination df_syslog { file("/var/log/syslog"); };
142 destination df_cron { file("/var/log/cron.log"); };
143 destination df_daemon { file("/var/log/daemon.log"); };
144 destination df_kern { file("/var/log/kern.log"); };
145 destination df_lpr { file("/var/log/lpr.log"); };
146 destination df_mail { file("/var/log/mail.log" group(maillog)); };
147 # destination df_mail_info { file("/var/log/mail.info" group(maillog)); };
148 destination df_mail_warn { file("/var/log/mail.warn" group(maillog)); };
149 destination df_mail_err { file("/var/log/mail.err" group(maillog)); };
150 destination df_user { file("/var/log/user.log" perm(0644)); };
151 destination df_uucp { file("/var/log/uucp.log"); };
152
153 # these files are meant for the mail system log files
154 # and provide re-usable destinations for {mail,cron,...}.info,
155 # {mail,cron,...}.notice, etc.
156 destination df_facility_dot_info { file("/var/log/$FACILITY.info"); };
157 destination df_facility_dot_notice { file("/var/log/$FACILITY.notice"); };
158 destination df_facility_dot_warn { file("/var/log/$FACILITY.warn"); };
159 destination df_facility_dot_err { file("/var/log/$FACILITY.err"); };
160 destination df_facility_dot_crit { file("/var/log/$FACILITY.crit"); };
161
162 # these files are meant for the news system, and are kept separated
163 # because they should be owned by "news" instead of "root"
164 destination df_news_dot_notice { file("/var/log/news/news.notice" owner("news")); };
165 destination df_news_dot_err { file("/var/log/news/news.err" owner("news")); };
166 destination df_news_dot_crit { file("/var/log/news/news.crit" owner("news")); };
167
168 # some more classical and useful files found in standard syslog configurations
169 destination df_debug { file("/var/log/debug"); };
170 destination df_messages { file("/var/log/messages"); };
171
172 <%- if @kernel == 'Linux' -%>
173 # pipes
174 # a console to view log messages under X
175 destination dp_xconsole { pipe("/dev/xconsole"); };
176
177 <%- end -%>
178 # consoles
179 # this will send messages to everyone logged in
180 destination du_all { usertty("*"); };
181
182
183 ######
184 # filters
185
186 # all messages from the auth and authpriv facilities
187 filter f_auth { facility(auth, authpriv); };
188
189 # all messages except from the auth and authpriv facilities
190 filter f_syslog { not facility(auth, authpriv, mail); };
191
192 # respectively: messages from the cron, daemon, kern, lpr, mail, news, user,
193 # and uucp facilities
194 filter f_cron { facility(cron); };
195 filter f_daemon { facility(daemon); };
196 filter f_kern { facility(kern); };
197 filter f_lpr { facility(lpr); };
198 filter f_mail { facility(mail); };
199 filter f_news { facility(news); };
200 filter f_user { facility(user); };
201 filter f_uucp { facility(uucp); };
202
203 # some filters to select messages of priority greater or equal to info, warn,
204 # and err
205 # (equivalents of syslogd's *.info, *.warn, and *.err)
206 filter f_at_least_info { level(info..emerg); };
207 filter f_at_least_notice { level(notice..emerg); };
208 filter f_at_least_warn { level(warn..emerg); };
209 filter f_at_least_err { level(err..emerg); };
210 filter f_at_least_crit { level(crit..emerg); };
211
212 # all messages of priority debug not coming from the auth, authpriv, news, and
213 # mail facilities
214 filter f_debug { level(debug) and not facility(auth, authpriv, news, mail); };
215
216 # all messages of info, notice, or warn priority not coming form the auth,
217 # authpriv, cron, daemon, mail, and news facilities
218 filter f_messages {
219         level(info,notice,warn)
220             and not facility(auth,authpriv,cron,daemon,mail,news);
221 };
222
223 # messages with priority emerg
224 filter f_emerg { level(emerg); };
225
226 <%- if @kernel == 'Linux' -%>
227 # complex filter for messages usually sent to the xconsole
228 filter f_xconsole {
229     facility(daemon,mail)
230         or level(debug,info,notice,warn)
231         or (facility(news)
232                 and level(crit,err,notice));
233 };
234
235 <%- end -%>
236
237 # order matters if you use "flags(final);" to mark the end of processing in a
238 # "log" statement
239
240 ###############################################################################
241 ########## ON LOG CLIENTS #####################################################
242 ###############################################################################
243 ###############################################################################
244 ###############################################################################
245 # all log clients, including the log server, log their locally created
246 # messages to the standard places.
247
248 # auth,authpriv.*                 /var/log/auth.log
249 log {
250         source(s_local);
251         filter(f_auth);
252         destination(df_auth);
253 };
254
255 # *.*;auth,authpriv.none          -/var/log/syslog
256 log {
257         source(s_local);
258         filter(f_syslog);
259         destination(df_syslog);
260 };
261
262 # this is commented out in the default syslog.conf
263 # cron.*                         /var/log/cron.log
264 #log {
265 #        source(s_local);
266 #        filter(f_cron);
267 #        destination(df_cron);
268 #};
269
270 # daemon.*                        -/var/log/daemon.log
271 log {
272         source(s_local);
273         filter(f_daemon);
274         destination(df_daemon);
275 };
276
277 # kern.*                          -/var/log/kern.log
278 log {
279         source(s_local);
280         filter(f_kern);
281         destination(df_kern);
282 };
283
284 # lpr.*                           -/var/log/lpr.log
285 log {
286         source(s_local);
287         filter(f_lpr);
288         destination(df_lpr);
289 };
290
291 # mail.*                          -/var/log/mail.log
292 log {
293         source(s_local);
294         filter(f_mail);
295         destination(df_mail);
296 };
297
298 # user.*                          -/var/log/user.log
299 log {
300         source(s_local);
301         filter(f_user);
302         destination(df_user);
303 };
304
305 # uucp.*                          /var/log/uucp.log
306 log {
307         source(s_local);
308         filter(f_uucp);
309         destination(df_uucp);
310 };
311
312 # mail.info                       -/var/log/mail.info
313 #log {
314 #        source(s_local);
315 #        filter(f_mail);
316 #        filter(f_at_least_info);
317 #        destination(df_mail_info);
318 #};
319
320 # mail.warn                       -/var/log/mail.warn
321 log {
322         source(s_local);
323         filter(f_mail);
324         filter(f_at_least_warn);
325         destination(df_mail_warn);
326 };
327
328 # mail.err                        /var/log/mail.err
329 log {
330         source(s_local);
331         filter(f_mail);
332         filter(f_at_least_err);
333         destination(df_mail_err);
334 };
335
336 # news.crit                       /var/log/news/news.crit
337 log {
338         source(s_local);
339         filter(f_news);
340         filter(f_at_least_crit);
341         destination(df_news_dot_crit);
342 };
343
344 # news.err                        /var/log/news/news.err
345 log {
346         source(s_local);
347         filter(f_news);
348         filter(f_at_least_err);
349         destination(df_news_dot_err);
350 };
351
352 # news.notice                     /var/log/news/news.notice
353 log {
354         source(s_local);
355         filter(f_news);
356         filter(f_at_least_notice);
357         destination(df_news_dot_notice);
358 };
359
360
361 # *.=debug;\
362 #         auth,authpriv.none;\
363 #         news.none;mail.none     -/var/log/debug
364 log {
365         source(s_local);
366         filter(f_debug);
367         destination(df_debug);
368 };
369
370
371 # *.=info;*.=notice;*.=warn;\
372 #         auth,authpriv.none;\
373 #         cron,daemon.none;\
374 #         mail,news.none          -/var/log/messages
375 log {
376         source(s_local);
377         filter(f_messages);
378         destination(df_messages);
379 };
380
381 # *.emerg                         *
382 log {
383         source(s_local);
384         filter(f_emerg);
385         destination(du_all);
386 };
387
388
389 <%- if @kernel == 'Linux' -%>
390 # daemon.*;mail.*;\
391 #         news.crit;news.err;news.notice;\
392 #         *.=debug;*.=info;\
393 #         *.=notice;*.=warn       |/dev/xconsole
394 log {
395         source(s_local);
396         filter(f_xconsole);
397         destination(dp_xconsole);
398 };
399 <%- end -%>
400
401
402  <%- if @hostname != "lotti" -%>
403 destination loghost-lotti {
404         tcp("lotti.debian.org" port (5140)
405                 tls( key_file("/etc/ssl/private/thishost.key")
406                      cert_file("/etc/ssl/debian/certs/thishost.crt")
407                      ca_dir("/etc/ssl/debian/certs/")
408                 )
409         );
410 };
411  <%- end -%>
412   <%- if @hostname != "loghost-grnet-01" -%>
413 destination loghost-loghost-grnet-01 {
414         tcp("loghost-grnet-01.debian.org" port (5140)
415                 tls( key_file("/etc/ssl/private/thishost.key")
416                      cert_file("/etc/ssl/debian/certs/thishost.crt")
417                      ca_dir("/etc/ssl/debian/certs/")
418                 )
419         );
420 };
421  <%- end -%>
422   <%- if @hostname != "loghost-osuosl-01" -%>
423 destination loghost-loghost-osuosl-01 {
424         tcp("loghost-osuosl-01.debian.org" port (5140)
425                 tls( key_file("/etc/ssl/private/thishost.key")
426                      cert_file("/etc/ssl/debian/certs/thishost.crt")
427                      ca_dir("/etc/ssl/debian/certs/")
428                 )
429         );
430 };
431  <%- end -%>
432
433 log {
434         source(s_local);
435  <%- if @hostname != "lotti" -%>
436         destination(loghost-lotti);
437  <%- end -%>
438  <%- if @hostname != "loghost-grnet-01" -%>
439         destination(loghost-loghost-grnet-01);
440  <%- end -%>
441  <%- if @hostname != "loghost-osuosl-01" -%>
442         destination(loghost-loghost-osuosl-01);
443  <%- end -%>
444 };
445
446
447
448 <%- if (@hostname == "lotti") || (@hostname == "loghost-grnet-01") || (@hostname == "loghost-osuosl-01") -%>
449 ###############################################################################
450 ########## ON LOG HOST ########################################################
451 ###############################################################################
452 ###############################################################################
453 #
454 # The log server, additionally, also logs all local and remote messages to
455 # a few special places.
456 destination hostdest_auth           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/auth.log"
457                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
458 destination hostdest_syslog         { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/syslog"
459                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
460 destination hostdest_cron           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/cron.log"
461                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
462 destination hostdest_daemon         { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/daemon.log"
463                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
464 destination hostdest_kern           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/kern.log"
465                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
466 destination hostdest_lpr            { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/lpr.log"
467                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
468 destination hostdest_mail           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/mail.log"
469                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
470 destination hostdest_news           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/news.log"
471                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
472 destination hostdest_user           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/user.log"
473                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
474 destination hostdest_uucp           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/uucp.log"
475                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
476 destination hostdest_debug          { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/debug"
477                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
478 destination hostdest_messages       { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/messages"
479                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
480
481
482 #----------------------------------------------------------------------
483 #  Special catch all destination hostdest_sorting by host
484 #----------------------------------------------------------------------
485 destination hostdest_facility_dot_info   { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.info"
486                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
487 destination hostdest_facility_dot_notice { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.notice"
488                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
489 destination hostdest_facility_dot_warn   { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.warn"
490                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
491 destination hostdest_facility_dot_err    { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.err"
492                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
493 destination hostdest_facility_dot_crit   { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.crit"
494                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
495
496
497 #----------------------------------------------------------------------
498 #  Catch all log files
499 #----------------------------------------------------------------------
500 destination df_ALL_auth { file("/var/log/auth-all.log"); };
501 destination df_ALL_mail { file("/var/log/mail-all.log"); };
502 destination df_ALL_syslog { file("/var/log/syslog-all"); };
503
504 log { source(s_local);
505       source(s_network);
506       filter(f_auth); destination(hostdest_auth); };
507 log { source(s_local);
508       source(s_network);
509       filter(f_syslog); destination(hostdest_syslog); };
510 log { source(s_local);
511       source(s_network);
512       filter(f_daemon); destination(hostdest_daemon); };
513 log { source(s_local);
514       source(s_network);
515       filter(f_kern); destination(hostdest_kern); };
516 log { source(s_local);
517       source(s_network);
518       filter(f_lpr); destination(hostdest_lpr); };
519 log { source(s_local);
520       source(s_network);
521       filter(f_mail); destination(hostdest_mail); };
522 log { source(s_local);
523       source(s_network);
524       filter(f_news); destination(hostdest_mail); };
525 log { source(s_local);
526       source(s_network);
527       filter(f_user); destination(hostdest_user); };
528 log { source(s_local);
529       source(s_network);
530       filter(f_uucp); destination(hostdest_uucp); };
531 log { source(s_local);
532       source(s_network);
533       filter(f_debug); destination(hostdest_debug); };
534 log { source(s_local);
535       source(s_network);
536       filter(f_messages); destination(hostdest_messages); };
537
538 log { source(s_local);
539       source(s_network);
540       filter(f_mail); filter(f_at_least_info); destination(hostdest_facility_dot_info); };
541 log { source(s_local);
542       source(s_network);
543       filter(f_mail); filter(f_at_least_warn); destination(hostdest_facility_dot_warn); };
544 log { source(s_local);
545       source(s_network);
546       filter(f_mail); filter(f_at_least_err); destination(hostdest_facility_dot_err); };
547
548
549 ## catch all:
550 log { source(s_local);
551       source(s_network);
552       filter(f_auth); destination(df_ALL_auth); };
553 log { source(s_local);
554       source(s_network);
555       filter(f_mail); destination(df_ALL_mail); };
556 log { source(s_local);
557       source(s_network);
558       filter(f_syslog); destination(df_ALL_syslog); };
559
560 ## syslog endpoint for fastly services:
561 destination fastly { file("/var/log/fastly.log"); };
562
563 log { source(s_network_fastly);
564       destination(fastly); };
565
566 <%- end -%>