write_ssv
Transforms event stream to SSV (Space-Separated Values) byte stream.
write_ssv [list_separator=str, null_value=str, no_header=bool]
Description
Section titled “Description”The write_ssv
operator transforms an event stream into a byte stream by writing
the events as SSV.
list_separator = str (optional)
Section titled “list_separator = str (optional)”The string separating different elements in a list within a single field.
Defaults to ","
.
null_value = str (optional)
Section titled “null_value = str (optional)”The string denoting an absent value.
Defaults to "-"
.
no_header = bool (optional)
Section titled “no_header = bool (optional)”Whether to not print a header line containing the field names.
Examples
Section titled “Examples”Write an event as SSV.
from {x:1, y:true, z: "String"}write_ssv
x y z1 true String
See Also
Section titled “See Also”print_ssv
,
read_ssv
,
write_csv
,
write_lines
,
write_tsv
,
write_xsv