github.com/Jeffail/benthos/v3@v3.65.0/website/docs/components/inputs/udp_server.md (about)

     1  ---
     2  title: udp_server
     3  type: input
     4  status: deprecated
     5  ---
     6  
     7  <!--
     8       THIS FILE IS AUTOGENERATED!
     9  
    10       To make changes please edit the contents of:
    11       lib/input/udp_server.go
    12  -->
    13  
    14  import Tabs from '@theme/Tabs';
    15  import TabItem from '@theme/TabItem';
    16  
    17  :::warning DEPRECATED
    18  This component is deprecated and will be removed in the next major version release. Please consider moving onto [alternative components](#alternatives).
    19  :::
    20  
    21  ```yaml
    22  # Config fields, showing default values
    23  input:
    24    label: ""
    25    udp_server:
    26      address: 127.0.0.1:0
    27      max_buffer: 1000000
    28      delimiter: ""
    29  ```
    30  
    31  Creates a server that receives messages over UDP as a continuous stream of data.
    32  Each line is interpretted as an individual message, if the delimiter field is
    33  left empty then line feed (\n) is used.
    34  
    35  The field `max_buffer` specifies the maximum amount of memory to
    36  allocate for buffering lines of data, this must exceed the largest expected
    37  message size.
    38  
    39  ## Fields
    40  
    41  ### `address`
    42  
    43  Sorry! This field is missing documentation.
    44  
    45  
    46  Type: `string`  
    47  Default: `"127.0.0.1:0"`  
    48  
    49  ### `max_buffer`
    50  
    51  Sorry! This field is missing documentation.
    52  
    53  
    54  Type: `int`  
    55  Default: `1000000`  
    56  
    57  ### `delimiter`
    58  
    59  Sorry! This field is missing documentation.
    60  
    61  
    62  Type: `string`  
    63  Default: `""`  
    64  
    65