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
| Port| TCP port to listen for incoming connections. |24224 |
14
-
| Unix_Path| Specify the path to unix socket to receive a Forward message. If set, `Listen` and `Port` are ignored. ||
15
-
| Unix_Perm| Set the permission of the unix socket file. If `Unix_Path`is not set, this parameter is ignored. ||
16
-
|Buffer\_Max\_Size | Specify the maximum buffer memory size used to receive a Forward message. The value must be according to the [Unit Size](../../administration/configuring-fluent-bit/unit-sizes.md) specification. |6144000 |
17
-
|Buffer\_Chunk\_Size| By default the buffer to store the incoming Forward messages, do not allocate the maximum memory allowed, instead it allocate memory when is required. The rounds of allocations are set by _Buffer\_Chunk\_Size_. The value must be according to the [Unit Size ](../../administration/configuring-fluent-bit/unit-sizes.md)specification. | 1024000 |
18
-
| Tag_Prefix| Prefix incoming tag with the defined value.||
19
-
| Tag| Override the tag of the forwarded events with the defined value.||
20
-
|Shared\_Key | Shared key for secure forward authentication. ||
21
-
|Empty\_Shared\_Key | Use this option to connect to Fluentd with a zero-length shared key. |`false`|
22
-
|Self\_Hostname | Hostname for secure forward authentication. ||
23
-
| Security.Users| Specify the username and password pairs for secure forward authentication. ||
24
-
| Threaded | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
|`Port`| TCP port to listen for incoming connections. |`24224`|
14
+
|`Unix_Path`| Specify the path to Unix socket to receive a Forward message. If set, `Listen` and `Port` are ignored. |_none_|
15
+
|`Unix_Perm`| Set the permission of the Unix socket file. If `Unix_Path`isn't set, this parameter is ignored. |_none_|
16
+
|`Buffer_Max_Size`| Specify the maximum buffer memory size used to receive a Forward message. The value must be according to the [Unit Size](../../administration/configuring-fluent-bit/unit-sizes.md) specification. |`6144000`|
17
+
|`Buffer_Chunk_Size`| By default the buffer to store the incoming Forward messages, don't allocate the maximum memory allowed, instead it allocate memory when it's required. The rounds of allocations are set by `Buffer_Chunk_Size`. The value must be according to the [Unit Size ](../../administration/configuring-fluent-bit/unit-sizes.md)specification. |`1024000`|
18
+
|`Tag_Prefix`| Prefix incoming tag with the defined value.|_none_|
19
+
|`Tag`| Override the tag of the forwarded events with the defined value.|_none_|
20
+
|`Shared_Key`| Shared key for secure forward authentication. |_none_|
21
+
|`Empty_Shared_Key`| Use this option to connect to Fluentd with a zero-length shared key. |`false`|
22
+
|`Self_Hostname`| Hostname for secure forward authentication. |_none_|
23
+
|`Security.Users`| Specify the username and password pairs for secure forward authentication. ||
24
+
|`Threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
25
25
26
-
## Getting Started
26
+
## Get started
27
27
28
-
In order to receive Forward messages, you can run the plugin from the command line or through the configuration file as shown in the following examples.
28
+
To receive Forward messages, you can run the plugin from the command line or through the configuration file as shown in the following examples.
29
29
30
-
### Command Line
30
+
### Command line
31
31
32
-
From the command line you can let Fluent Bit listen for _Forward_ messages with the following options:
32
+
From the command line you can let Fluent Bit listen for Forward messages with the following options:
33
33
34
34
```bash
35
-
$ fluent-bit -i forward -o stdout
35
+
fluent-bit -i forward -o stdout
36
36
```
37
37
38
-
By default the service will listen an all interfaces \(0.0.0.0\) through TCP port 24224, optionally you can change this directly, e.g:
38
+
By default, the service listens on all interfaces (`0.0.0.0`) through TCP port `24224`. You can change this by passing parameters to the command:
0 commit comments