5 # The default action of syslog-ng 1.6.0 is to log a STATS line
6 # to the file every 10 minutes. That's pretty ugly after a while.
7 # Change it to every 12 hours so you get a nice daily update of
8 # how many messages syslog-ng missed (0).
12 source src { unix-stream("/dev/log"); internal(); };
14 destination messages { file("/var/log/messages"); };
16 log { source(src); destination(messages); };