aboutsummaryrefslogtreecommitdiffstats
path: root/main/syslog-ng/syslog-ng-source.std
blob: 33b5d83e686b79eceea789bbde09dc911e5088d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# ---------------------------------------------------------------------------------
# Default syslog-ng sources; Do not edit this file!
# append source with line on a file: syslog-ng-source.<package>
# ---------------------------------------------------------------------------------
source s_all {
# message generated by Syslog-NG
  internal();
# standard Linux log source (this is the default place for the syslog() function to send logs to)
  unix-dgram("/dev/log");
# messages from the kernel
  file("/proc/kmsg" program_override("kernel"));
};