unix-stream() Source Driver
The unix-stream() driver open an AF_UNIX socket and start listening on it for messages. The unix-stream() driver uses SOCK_STREAM semantics.
Important Information
Status
Configuration File Used
@version: 3.31
@include "scl.conf"
options {
stats-freq(10);
time-reopen(10);
};
source s_stream {
unix-stream("/var/run/syslog");
};
destination console{
file(/dev/stdout);
};
log {
source(s_stream);
destination(console);
};Proof


Last updated