How to conf filebeat input path use date such as (/var/log/${+yyyyMMDD})

how to conf filebeat input path use date such as (/var/log/${+yyyyMMDD})?

filebeat.prospectors:

  • type: log
    paths:
    • /var/log/${+yyyyMMDD}

is filebeat support this file path?

The paths array supports file Glob patterns, so you can do something like /var/log/*. If you need, you can combine it with the include_files option which can applies a list of regexps over the glob to further filter it.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.