Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pipeline/inputs/forward.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions pipeline/inputs/tcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions pipeline/inputs/udp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down