mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 04:15:23 -04:00
Fix duplicate description for storage_policy in yaml config files (#15014)
With PR #13923 was described how the DLQ storage_policy behaves. With PR #14261 was introduced a duplication of the description in logstash.yml. This commit resolves the duplication and keeps the latest description that seems more direct expressive.
This commit is contained in:
parent
d7c81dfece
commit
c0a5665f52
2 changed files with 3 additions and 12 deletions
|
@ -287,13 +287,6 @@
|
|||
#
|
||||
# dead_letter_queue.retain.age: 1d
|
||||
|
||||
# If using dead_letter_queue.enable: true, defines the action to take when the dead_letter_queue.max_bytes is reached,
|
||||
# could be "drop_newer" or "drop_older".
|
||||
# With drop_newer, messages that were inserted most recently are dropped, logging an error line.
|
||||
# With drop_older setting, the oldest messages are dropped as new ones are inserted.
|
||||
# Default value is "drop_newer".
|
||||
# dead_letter_queue.storage_policy: drop_newer
|
||||
|
||||
# If using dead_letter_queue.enable: true, the directory path where the data files will be stored.
|
||||
# Default is path.data/dead_letter_queue
|
||||
#
|
||||
|
|
|
@ -88,11 +88,9 @@
|
|||
#
|
||||
# dead_letter_queue.flush_interval: 5000
|
||||
|
||||
# If using dead_letter_queue.enable: true, defines the action to take when the dead_letter_queue.max_bytes is reached,
|
||||
# could be "drop_newer" or "drop_older".
|
||||
# With drop_newer, messages that were inserted most recently are dropped, logging an error line.
|
||||
# With drop_older setting, the oldest messages are dropped as new ones are inserted.
|
||||
# Default value is "drop_newer".
|
||||
# If using dead_letter_queue.enable: true, controls which entries should be dropped to avoid exceeding the size limit.
|
||||
# Set the value to `drop_newer` (default) to stop accepting new events that would push the DLQ size over the limit.
|
||||
# Set the value to `drop_older` to remove queue pages containing the oldest events to make space for new ones.
|
||||
#
|
||||
# dead_letter_queue.storage_policy: drop_newer
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue