Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions plugins/in_tail/tail.c
Original file line number Diff line number Diff line change
Expand Up @@ -655,10 +655,9 @@ static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_TIME, "ignore_older", "0",
0, FLB_TRUE, offsetof(struct flb_tail_config, ignore_older),
"ignore records older than 'ignore_older'. Supports m,h,d (minutes, "
"hours, days) syntax. Default behavior is to read all records. Option "
"only available when a Parser is specified and it can parse the time "
"of a record."
"ignore files with modification times older than 'ignore_older'. "
"Supports m,h,d (minutes, hours, days) syntax. Default behavior is to "
"read all files. "
},
{
FLB_CONFIG_MAP_BOOL, "ignore_active_older_files", "false",
Expand Down
2 changes: 1 addition & 1 deletion plugins/in_tail/tail_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ struct flb_tail_config {
int read_from_head; /* read new files from head */
int rotate_wait; /* sec to wait on rotated files */
int watcher_interval; /* watcher interval */
int ignore_older; /* ignore fields older than X seconds */
int ignore_older; /* ignore files older than X seconds */
int ignore_active_older_files; /* ignore files that exceed the ignore
* older limit even if they are already
* being ingested */
Expand Down
Loading