X-Git-Url: https://git.tld-linux.org/?a=blobdiff_plain;f=syslog-ng-simple.conf;h=cb65349f4f4bb845c3a10ab8867b524cc4a1d639;hb=4f274c6f82057b4dc114f6a15eb7a74f05e58a81;hp=f445656280c29b22f728d669eb0faffd7d5d4ea5;hpb=70014d1e26d9629e6c9212e2b09582916ce4cbec;p=packages%2Fsyslog-ng.git diff --git a/syslog-ng-simple.conf b/syslog-ng-simple.conf index f445656..cb65349 100644 --- a/syslog-ng-simple.conf +++ b/syslog-ng-simple.conf @@ -1,4 +1,4 @@ -@version: 3.6 +@version: 3.20 # # Syslog-ng configuration for TLD Linux # @@ -23,6 +23,7 @@ options { source s_sys { file ("/proc/kmsg" program_override("kernel")); + unix-stream("/dev/log" max-connections(1000) log_iw_size(100000)); internal(); }; @@ -32,6 +33,7 @@ destination d_messages { file("/var/log/messages"); }; destination d_kern { file("/var/log/kernel"); }; destination d_console_all { file("/dev/tty12"); }; +# if using systemd, an IP address instead of name may be required here #destination d_loghost { udp("loghost" port(514)); }; filter f_kern { facility(kern); };