save_udp
Saves bytes to a UDP socket.
save_udp endpoint:str
Description
Section titled “Description”Saves bytes to a UDP socket.
endpoint: str
Section titled “endpoint: str”The address of the remote endpoint to load bytes from. Must be of the format:
[udp://]host:port
.
Examples
Section titled “Examples”Send the Tenzir version as CSV file to a remote endpoint via UDP:
versionwrite_csvsave_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.