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

     1  ---
     2  title: tcp
     3  type: output
     4  status: deprecated
     5  ---
     6  
     7  <!--
     8       THIS FILE IS AUTOGENERATED!
     9  
    10       To make changes please edit the contents of:
    11       lib/output/tcp.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  output:
    24    label: ""
    25    tcp:
    26      address: localhost:4194
    27  ```
    28  
    29  Sends messages as a continuous stream of line delimited data over TCP by
    30  connecting to a server.
    31  
    32  If batched messages are sent the final message of the batch will be followed by
    33  two line breaks in order to indicate the end of the batch.
    34  
    35  ## Fields
    36  
    37  ### `address`
    38  
    39  Sorry! This field is missing documentation.
    40  
    41  
    42  Type: `string`  
    43  Default: `"localhost:4194"`  
    44  
    45