Announcement:
- https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.8.0
- https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.8.1
Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 18630db8e8)
Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
17 lines
220 B
Plaintext
17 lines
220 B
Plaintext
@version: 4.8
|
|
|
|
source s_sys {
|
|
file("/proc/kmsg" program_override("kernel"));
|
|
unix-stream ("/dev/log");
|
|
internal();
|
|
};
|
|
|
|
destination d_all {
|
|
file("/var/log/messages");
|
|
};
|
|
|
|
log {
|
|
source(s_sys);
|
|
destination(d_all);
|
|
};
|