Skip to content

Commit

Permalink
Fix the endian issue in tail plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
YingJie Fu committed Aug 13, 2024
1 parent f4b4df2 commit f465c37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/in_tail/tail_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ struct flb_tail_config {
int refresh_interval_sec; /* seconds to re-scan */
long refresh_interval_nsec;/* nanoseconds to re-scan */
int read_from_head; /* read new files from head */
int rotate_wait; /* sec to wait on rotated files */
time_t rotate_wait; /* sec to wait on rotated files */
int watcher_interval; /* watcher interval */
int ignore_older; /* ignore fields older than X seconds */
time_t ignore_older; /* ignore fields older than X seconds */
time_t last_pending; /* last time a 'pending signal' was emitted' */
struct mk_list *path_list; /* list of paths to scan (glob) */
flb_sds_t path_key; /* key name of file path */
Expand Down

0 comments on commit f465c37

Please sign in to comment.