Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

Transforms event stream to SSV (Space-Separated Values) byte stream.

write_ssv [list_separator=str, null_value=str, no_header=bool]

The write_ssv operator transforms an event stream into a byte stream by writing the events as SSV.

The string separating different elements in a list within a single field.

Defaults to ",".

The string denoting an absent value.

Defaults to "-".

Whether to not print a header line containing the field names.

Write an event as SSV.

from {x:1, y:true, z: "String"}
write_ssv
x y z
1 true String

Last updated: