]> git.pld-linux.org Git - packages/syslog-ng.git/blob - syslog-ng-simple.conf
Rel 6; let it automatically choose worker-threads based on nr of cpus
[packages/syslog-ng.git] / syslog-ng-simple.conf
1 @version: 3.8
2 #
3 # Syslog-ng configuration for PLD Linux
4 #
5 # See syslog-ng(8) and syslog-ng.conf(5) for more information.
6 #
7
8 options {
9         flush_lines(0);
10         owner(root);
11         group(logs);
12         perm(0640);
13         create_dirs(yes);
14         dir_owner(root);
15         dir_group(logs);
16         dir_perm(0750);
17         stats_freq(43200);
18         time_reopen(10);
19         time_reap(360);
20         mark_freq(600);
21         threaded(yes);
22 };
23
24 source s_sys    {
25         file ("/proc/kmsg" program_override("kernel"));
26
27         unix-stream("/dev/log" max-connections(1000) log_iw_size(100000));
28 # if using systemd, comment out the line above, and uncomment line below
29 #       unix-dgram("/run/systemd/journal/syslog");
30 # NOTE: if you are running under systemd and fixed config then you may need to manually fix /dev/log symlink:
31 # ln -s /run/systemd/journal/dev-log /dev/log
32 #
33         internal();
34 };
35
36 destination d_mail        { file("/var/log/maillog"); };
37 destination d_messages    { file("/var/log/messages"); };
38 destination d_kern        { file("/var/log/kernel"); };
39 destination d_console_all { file("/dev/tty12"); };
40
41 # if using systemd, an IP address instead of name may be required here
42 #destination d_loghost  { udp("loghost" port(514)); };
43
44 filter f_kern             { facility(kern); };
45 filter f_mail             { facility(mail); };
46
47 log { source(s_sys); filter(f_kern); destination(d_kern); };
48 log { source(s_sys); filter(f_mail); destination(d_mail); };
49
50 # This is a catchall statement, and should catch all messages which were not
51 # accepted any of the previous statements.
52 # If using d_console_all or network logging, remove flags(fallback);
53 log { source(s_sys); destination(d_messages); flags(fallback); };
54 #log { source(s_sys); destination(d_messages); };
55
56 # Log all messages to tty12
57 #log { source(s_sys); destination(d_console_all); };
58
59 # Network syslogging
60 #log { source(s_sys); destination(d_loghost); };
This page took 0.133686 seconds and 3 git commands to generate.