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
|`flush`| Set the flush time in `seconds.nanoseconds`. The engine loop uses a Flush timeout to define when it's required to flush the records ingested by input plugins through the defined output plugins. |`1`|
31
-
|`grace`| Set the grace time in `seconds` as an integer value. The engine loop uses a Grace timeout to define wait time on exit. |`5`|
32
-
| daemon | Boolean. Set if Fluent Bit should run as a Daemon (background) or not. Allowed values are: `yes`, `no`, `on`, and `off`. When using a Systemd based unitas the one provided in FLuent Bit packages, don't turn on this option. |`Off`|
31
+
|`grace`| Set the grace time in `seconds` as an integer value. The engine loop uses a grace timeout to define wait time on exit. |`5`|
32
+
| daemon | Boolean. Determines whether Fluent Bit should run as a Daemon (background). Allowed values are: `yes`, `no`, `on`, and `off`. Don't enable when using a Systemd based unit, such as the one provided in Fluent Bit packages. |`Off`|
33
33
|`dns.mode`| Set the primary transport layer protocol used by the asynchronous DNS resolver. Can be overridden on a per plugin basis. |`UDP`|
34
34
|`log_file`| Absolute path for an optional log file. By default all logs are redirected to the standard error interface (stderr). |_none_|
35
-
|`log_level`| Set the logging verbosity level. Allowed values are: `off`, `error`, `warn`, `info`, `debug`, and `trace`. Values are cumulative. If 'debug' is set, it will include `error`, `warning`, `info`, and `debug`. Trace mode is only available if Fluent Bit was built with the _`WITH_TRACE`_ option enabled. |`info`|
35
+
|`log_level`| Set the logging verbosity level. Allowed values are: `off`, `error`, `warn`, `info`, `debug`, and `trace`. Values are cumulative. If `debug` is set, it will include `error`, `warning`, `info`, and `debug`. Trace mode is only available if Fluent Bit was built with the _`WITH_TRACE`_ option enabled. |`info`|
36
36
|`parsers_file`| Path for a `parsers` configuration file. Multiple `Parsers_File` entries can be defined within the section. |_none_|
37
37
|`plugins_file`| Path for a `plugins` configuration file. A `plugins` configuration file defines paths for external plugins. [See an example](https://github.com/fluent/fluent-bit/blob/master/conf/plugins.conf). |_none_|
38
38
|`streams_file`| Path for the Stream Processor configuration file. [Learn more about Stream Processing configuration](../../../stream-processing/introduction.md). |_none_|
39
-
|`http_server`| Enable the built-in HTTP Server |`Off`|
40
-
|`http_listen`| Set listening interface for HTTP Server when it's enabled |`0.0.0.0`|
39
+
|`http_server`| Enable the built-in HTTP Server.|`Off`|
40
+
|`http_listen`| Set listening interface for HTTP Server when it's enabled.|`0.0.0.0`|
41
41
|`http_port`| Set TCP Port for the HTTP Server. |`2020`|
42
42
|`coro_stack_size`| Set the coroutines stack size in bytes. The value must be greater than the page size of the running system. Setting the value too small (`4096`) can cause coroutine threads to overrun the stack buffer. The default value of this parameter shouldn't be changed. |`24576`|
43
43
|`scheduler.cap`| Set a maximum retry time in seconds. Supported in v1.8.7 and greater. |`2000`|
@@ -156,7 +156,7 @@ flush the results every five seconds to the standard output:
156
156
## Config Include File
157
157
158
158
To avoid complicated long configuration files is better to split specific parts in
159
-
different files and call them (include) from one main file. The `@INCLUDE`can be used
159
+
different files and call them (include) from one main file. The `@INCLUDE`can be used
0 commit comments