save_udp
Saves bytes to a UDP socket.
save_udp endpoint:str
Description
Saves bytes to a UDP socket.
endpoint: str
The address of the remote endpoint to load bytes from. Must be of the format:
[udp://]host:port
.
Examples
Send the Tenzir version as CSV file to a remote endpoint via UDP:
version
write_csv
save_udp "127.0.0.1:56789"
Use nc -ul 127.0.0.1 56789
to spin up a UDP server to test the above pipeline.