Send a UDP datagram message to a specific host and port.
yaml
type: "io.kestra.plugin.fs.udp.Send"Examples
Send a UDP message
yaml
id: udp_send_example
namespace: dev
tasks:
- id: send_udp
type: io.kestra.plugin.fs.udp.Send
host: 127.0.0.1
port: 8081
payload: "Hello via UDP"
Properties
host *Requiredstring
Target host or IP address.
payload *Requiredstring
Message payload to send.
port *Requiredintegerstring
Target UDP port.
encoding string
Default
UTF-8Character encoding for the payload.
Outputs
host string
The target host.
port integer
The target port.
sentBytes integer
The number of bytes sent.