stdout
Prints messages to stdout as a continuous stream of data.
-
Common
-
Advanced
outputs:
label: ""
stdout:
codec: lines
outputs:
label: ""
stdout:
codec: lines
Fields
codec
The way in which the bytes of messages should be written out into the output data stream. It’s possible to write lines using a custom delimiter with the delim:x codec, where x is the character sequence custom delimiter.
Requires version 3.46.0 or later.
Type: string
Default: lines
| Option | Summary |
|---|---|
|
Only applicable to file based outputs. Writes each message to a file in full, if the file already exists the old content is deleted. |
|
Append each message to the output stream without any delimiter or special encoding. |
|
Append each message to the output stream followed by a line break. |
|
Append each message to the output stream followed by a custom delimiter. |
# Examples:
codec: lines
# ---
codec: delim:
# ---
codec: delim:foobar