telegraf/plugins/parsers/influx
Paweł Żak 743e023f84
chore: Fix linter findings for makezero (part1) (#12254)
2022-11-21 21:07:07 +01:00
..
influx_upstream chore: Wrap long lines in plugins/parsers (#12180) 2022-11-08 18:47:35 +01:00
README.md chore: Fix readme linter errors for processor, aggregator, and parser plugins (#10960) 2022-06-06 17:04:28 -06:00
escape.go Revive fixes - part 1 (#8797) 2021-02-08 11:18:40 -05:00
handler.go chore: fix linter findings for unparam and revive.unused-parameter (#12150) 2022-11-08 12:04:12 -07:00
machine.go fix: memory leak in influx parser (#9787) 2021-10-07 15:35:44 -05:00
machine.go.rl fix: memory leak in influx parser (#9787) 2021-10-07 15:35:44 -05:00
machine_test.go chore: Fix linter findings for makezero (part1) (#12254) 2022-11-21 21:07:07 +01:00
parser.go chore: fix linter findings for unparam and revive.unused-parameter (#12150) 2022-11-08 12:04:12 -07:00
parser_test.go chore: Wrap long lines in plugins/parsers (#12180) 2022-11-08 18:47:35 +01:00

README.md

Influx Line Protocol Parser Plugin

Parses metrics using the Influx Line Protocol.

Configuration

[[inputs.file]]
  files = ["example"]

  ## 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"

  ## Influx line protocol parser
  ## 'internal' is the default. 'upstream' is a newer parser that is faster
  ## and more memory efficient.
  ## influx_parser_type = "internal"