Skip to content

Commit 4b2fba5

Browse files
eschabelllecaros
authored andcommitted
in_tail: add missing config param descriptions
- watcher_interval: interval to check symbolic link rotation - progress_check_interval: interval to check for pending data in monitored files (inotify mode) - progress_check_interval_nsec: nanosecond component of progress check interval Fixes #11403 Signed-off-by: Eric D. Schabell <eric@schabell.org>
1 parent 797d5e3 commit 4b2fba5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

plugins/in_tail/tail.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,14 +610,18 @@ static struct flb_config_map config_map[] = {
610610
{
611611
FLB_CONFIG_MAP_TIME, "watcher_interval", "2s",
612612
0, FLB_TRUE, offsetof(struct flb_tail_config, watcher_interval),
613+
"interval to check if monitored symbolic link files have been rotated."
613614
},
614615
{
615616
FLB_CONFIG_MAP_TIME, "progress_check_interval", "2s",
616617
0, FLB_TRUE, offsetof(struct flb_tail_config, progress_check_interval),
618+
"interval to check for pending data in monitored files. This is used with "
619+
"inotify to detect file changes that may have been missed."
617620
},
618621
{
619622
FLB_CONFIG_MAP_INT, "progress_check_interval_nsec", "0",
620623
0, FLB_TRUE, offsetof(struct flb_tail_config, progress_check_interval_nsec),
624+
"nanosecond component of the progress check interval."
621625
},
622626
{
623627
FLB_CONFIG_MAP_TIME, "rotate_wait", FLB_TAIL_ROTATE_WAIT,

0 commit comments

Comments
 (0)