File system RealtimeTrigger

File system RealtimeTrigger

Certified

Trigger on incoming UDP messages

Listens on a UDP port and fires immediately for each received datagram. Default bind 0.0.0.0, buffer 1024 bytes, UTF-8 decoding.

yaml
type: io.kestra.plugin.fs.udp.RealtimeTrigger

Trigger a flow whenever a UDP datagram is received.

yaml
id: udp_listener
namespace: dev

triggers:
  - id: udp_incoming
    type: io.kestra.plugin.fs.udp.RealtimeTrigger
    host: 0.0.0.0
    port: 8091

tasks:
  - id: log_message
    type: io.kestra.plugin.core.log.Log
    message: "📩 Received UDP: {{ trigger.payload }} from {{ trigger.sourceIp }}:{{ trigger.sourcePort }}"
Properties

UDP port to listen on

Defaultfalse

Specifies whether a trigger is allowed to start a new execution even if a previous run is still in progress.

Default1024

Buffer size in bytes

DefaultUTF-8

Encoding for incoming data

Default0.0.0.0

Interface to bind

SubTypestring
Possible Values
CREATEDSUBMITTEDRUNNINGPAUSEDRESTARTEDKILLINGSUCCESSWARNINGFAILEDKILLEDCANCELLEDQUEUEDRETRYINGRETRIEDSKIPPEDBREAKPOINTRESUBMITTED

List of execution states after which a trigger should be stopped (a.k.a. disabled).

Defaulttrue

A condition that determines whether the trigger should run.

A Pebble expression evaluated at trigger time. The trigger fires only when the expression evaluates to a truthy value (true, a non-empty string, a non-zero number). Use this to gate trigger execution on dynamic runtime values such as execution labels, flow variables, or environment conditions.

The received UDP payload

The IP address of the sender

The port of the sender

Formatdate-time

The timestamp when the message was received