The stdin() driver collects messages from the standard input stream. When the standard input stream is closed, syslog-ng stops and stdin() inherits all options from the file() source, including multi-line options, or flags(no-parse).
The stdin() driver causes syslog-ng to exit once it hits end-of-file (EOF).
stdin();
@version: 3.16 log { source { stdin(); }; destination { file("/dev/stdout"); }; };
The following code snippet is an example of how the stdin() driver is used to collect a test message:
$ echo "this is a test message" | ./syslog-ng -Fe --no-caps [2017-11-14T13:47:16.757938] syslog-ng starting up; version='3.12.1' [2017-11-14T13:47:16.758195] syslog-ng shutting down; version='3.12.1' Nov 14 13:47:16 testserver this is a test message
© 2025 One Identity LLC. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center