Skip to main content
Version: Next

write_ndjson

Transforms the input event stream to Newline-Delimited JSON byte stream.

write_ndjson [color=bool]

Description

Transforms the input event stream to Newline-Delimited JSON byte stream.

Newline-Delimited JSON

You can use the write_ndjson operator to write Newline-Delimited JSON.

color = bool (optional)

Colorize the output.

Examples

Convert a YAML stream into a JSON file

load_file "input.yaml"
read_yaml
write_ndjson
save_file "output.json"