You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pipeline/inputs/tcp.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,14 @@ The plugin supports the following configuration parameters:
12
12
|`Port`| TCP port to listen for connections. |`5170`|
13
13
|`Buffer_Size`| Specify the maximum buffer size in KB to receive a JSON message. If not set, the default is the value of `Chunk_Size`. |`Chunk_Size`|
14
14
|`Chunk_Size`| The default buffer to store the incoming JSON messages. It doesn't allocate the maximum memory allowed; instead it allocates memory when required. The rounds of allocations are set by `Chunk_Size`. If not set, `Chunk_Size` is equal to 32 (32KB). |`32`|
15
-
|`Format`| Specify the expected payload format. Supported values: `json` and `none`. `json` it expects JSON maps. When set to `none`, every record splits using the defined `Separator`. |`json`|
15
+
|`Format`| Specify the expected payload format. Supported values: `json` and `none`. When set to `json` it expects JSON maps. When set to `none`, every record splits using the defined `Separator`. |`json`|
16
16
|`Separator`| When `Format` is set to `none`, Fluent Bit needs a separator string to split the records. |`LF` or `0x10` (break line) |
17
17
|`Source_Address_Key`| Specify the key to inject the source address. |_none_|
18
18
|`Threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
19
19
20
20
## Get started
21
21
22
-
To receive JSON messages over TCP, you can run the plugin from the command line or through the configuration file:
22
+
To receive JSON messages over TCP, you can run the plugin from the command line or through the configuration file.
23
23
24
24
### Command line
25
25
@@ -39,7 +39,7 @@ In the example the JSON messages will only arrive through the network interface
39
39
40
40
### Configuration file
41
41
42
-
In your main configuration file append the following sections:
42
+
In your main configuration file append the following sections:
0 commit comments