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
Added hot_reload to service section yaml configuration with example. (#1592)
* Added hot_reload to service section yaml configuration with example.
Signed-off-by: Eric D. Schabell <eric@schabell.org>
* Added link to hot_reload doc page.
Signed-off-by: Eric D. Schabell <eric@schabell.org>
* Update administration/configuring-fluent-bit/yaml/service-section.md
Signed-off-by: Pat <patrick.j.k.stephens@gmail.com>
---------
Signed-off-by: Eric D. Schabell <eric@schabell.org>
Signed-off-by: Pat <patrick.j.k.stephens@gmail.com>
Co-authored-by: Pat <patrick.j.k.stephens@gmail.com>
Copy file name to clipboardExpand all lines: administration/configuring-fluent-bit/yaml/service-section.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ The `service` section defines global properties of the service. The available co
16
16
|`http_server`| Enables the built-in HTTP Server. |`off`|
17
17
|`http_listen`| Sets the listening interface for the HTTP Server when it's enabled. |`0.0.0.0`|
18
18
|`http_port`| Sets the TCP port for the HTTP Server. |`2020`|
19
+
|`hot_reload`| Enables hot [reloading](../../hot_reload.md) of configuration with SIGHUP. |`on`|
19
20
|`coro_stack_size`| Sets the coroutine 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 should not be changed. |`24576`|
20
21
|`scheduler.cap`| Sets a maximum retry time in seconds. Supported in v1.8.7 and greater. |`2000`|
21
22
|`scheduler.base`| Sets the base of exponential backoff. Supported in v1.8.7 and greater. |`5`|
@@ -24,7 +25,7 @@ The `service` section defines global properties of the service. The available co
24
25
25
26
### Configuration Example
26
27
27
-
Below is a simple configuration example that defines a `service` section and a pipeline with a `random` input and `stdout` output:
28
+
Below is a simple configuration example that defines a `service` section with [hot reloading](../../hot_reload.md) enabled and a pipeline with a `random` input and `stdout` output:
0 commit comments