diff --git a/pipeline/inputs/forward.md b/pipeline/inputs/forward.md index eea435669..c7b1d2668 100644 --- a/pipeline/inputs/forward.md +++ b/pipeline/inputs/forward.md @@ -25,6 +25,7 @@ The plugin supports the following configuration parameters: | `threaded` | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). | `false` | | `unix_path` | Specify the path to Unix socket to receive a Forward message. If set, `listen` and `port` are ignored. | _none_ | | `unix_perm` | Set the permission of the Unix socket file. If `unix_path` isn't set, this parameter is ignored. | _none_ | +| `workers` | The number of listener workers that accept and process incoming connections. Not supported with `unix_path`; a value greater than `1` while `unix_path` is set causes startup to fail. | `1` | ### TLS / SSL diff --git a/pipeline/inputs/tcp.md b/pipeline/inputs/tcp.md index b7d48aa79..3a2a476c3 100644 --- a/pipeline/inputs/tcp.md +++ b/pipeline/inputs/tcp.md @@ -21,6 +21,7 @@ The plugin supports the following configuration parameters: | `separator` | When `format` is set to `none`, Fluent Bit needs a separator string to split the records. | `LF` or `0x10` (break line) | | `source_address_key` | Specify the key to inject the source address. | _none_ | | `threaded` | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). | `false` | +| `workers` | The number of listener workers that accept and process incoming connections on the port. | `1` | ## Get started diff --git a/pipeline/inputs/udp.md b/pipeline/inputs/udp.md index c9b3f2a5a..64efcc17a 100644 --- a/pipeline/inputs/udp.md +++ b/pipeline/inputs/udp.md @@ -21,6 +21,7 @@ The plugin supports the following configuration parameters: | `separator` | When `format` is set to `none`, Fluent Bit needs a separator string to split the records. | `LF` or `0x10` (break line) | | `source_address_key` | Specify the key where the source address will be injected. | _none_ | | `threaded` | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). | `false` | +| `workers` | The number of listener workers that receive and process incoming datagrams on the port. | `1` | ## Get started