telegraf/plugins/inputs/file
Samuel-BF f530ca6e7c Use godirwalk in globpath (#5145) 2018-12-18 14:23:25 -08:00
..
dev Add ability to set measurement from matched text in grok parser (#4433) 2018-08-17 13:45:22 -07:00
README.md Add ability to set measurement from matched text in grok parser (#4433) 2018-08-17 13:45:22 -07:00
file.go Use godirwalk in globpath (#5145) 2018-12-18 14:23:25 -08:00
file_test.go Add ability to set measurement from matched text in grok parser (#4433) 2018-08-17 13:45:22 -07:00

README.md

File Input Plugin

The file plugin updates a list of files every interval and parses the contents using the selected input data format.

Files will always be read in their entirety, if you wish to tail/follow a file use the tail input plugin instead.

Configuration:

[[inputs.file]]
  ## Files to parse each interval.
  ## These accept standard unix glob matching rules, but with the addition of
  ## ** as a "super asterisk". ie:
  ##   /var/log/**.log     -> recursively find all .log files in /var/log
  ##   /var/log/*/*.log    -> find all .log files with a parent dir in /var/log
  ##   /var/log/apache.log -> only read the apache log file
  files = ["/var/log/apache/access.log"]

  ## Data format to consume.
  ## Each data format has its own unique set of configuration options, read
  ## more about them here:
  ## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md
  data_format = "influx"