:plugin: udp :type: output :default_codec: json /////////////////////////////////////////// START - GENERATED VARIABLES, DO NOT EDIT! /////////////////////////////////////////// :version: %VERSION% :release_date: %RELEASE_DATE% :changelog_url: %CHANGELOG_URL% :include_path: ../../../../logstash/docs/include /////////////////////////////////////////// END - GENERATED VARIABLES, DO NOT EDIT! /////////////////////////////////////////// [id="plugins-{type}s-{plugin}"] === Udp output plugin include::{include_path}/plugin_header.asciidoc[] ==== Description Send events over UDP Keep in mind that UDP does not provide delivery or duplicate protection guarantees. Even when this plugin succeeds at writing to the UDP socket, there is no guarantee that the recipient will receive exactly one copy of the event. When this plugin fails to write to the UDP socket, by default the event will be dropped and the error message will be logged. The <> option in conjunction with the <> option can be used to retry a failed write for a number of times before dropping the event. [id="plugins-{type}s-{plugin}-options"] ==== Udp Output Configuration Options This plugin supports the following configuration options plus the <> described later. [cols="<,<,<",options="header",] |======================================================================= |Setting |Input type|Required | <> |<>|Yes | <> |<>|Yes | <> |<>|No | <> |<>|No |======================================================================= Also see <> for a list of options supported by all output plugins.   [id="plugins-{type}s-{plugin}-host"] ===== `host` * This is a required setting. * Value type is <> * There is no default value for this setting. The address to send messages to [id="plugins-{type}s-{plugin}-port"] ===== `port` * This is a required setting. * Value type is <> * There is no default value for this setting. The port to send messages on. This can be dynamic using the `%{[target][port]}` syntax. [id="plugins-{type}s-{plugin}-retry_count"] ===== `retry_count` * Value type is <> * Default value is `0` The number of times to retry a failed UPD socket write [id="plugins-{type}s-{plugin}-retry_backoff_ms"] ===== `retry_backoff_ms` * Value type is <> * Default value is `10` The amount of time to wait in milliseconds before attempting to retry a failed UPD socket write [id="plugins-{type}s-{plugin}-common-options"] include::{include_path}/{type}.asciidoc[] :default_codec!: