110686e693
By default, the watch timer in Fluentd is set to True. To save CPU and I/O consumption this can be set to False, which kolla-ansible has been hardcoding so far. When the watch timer is disabled, in_tail relies entirely on inotify. In certain constellations, this may not work reliably. In these cases, the watch timer needs to be activated, so this change adds a variable to make the setting configurable. Change-Id: Ic8ce6fbc3ed8f31d5d090e114b35703532679729
12 lines
363 B
YAML
12 lines
363 B
YAML
---
|
|
features:
|
|
- |
|
|
With the boolean parameter ``fluentd_enable_watch_timer`` it is
|
|
now possible to enable the additional watch timer of Fluentd.
|
|
|
|
The default value of ``fluentd_enable_watch_timer`` is set
|
|
to ``false``.
|
|
|
|
More details about the watch timer in Fluentd can be found at
|
|
https://docs.fluentd.org/input/tail#enable_watch_timer.
|