telegraf/plugins/parsers/influx
Joshua Powers 40ed7fb693
feat(parsers.influx): New influx line protocol via feature flag (#10749)
2022-03-10 15:09:58 -07:00
..
influx_upstream feat(parsers.influx): New influx line protocol via feature flag (#10749) 2022-03-10 15:09:58 -07:00
README.md feat(parsers.influx): New influx line protocol via feature flag (#10749) 2022-03-10 15:09:58 -07:00
escape.go Revive fixes - part 1 (#8797) 2021-02-08 11:18:40 -05:00
handler.go Remove error return type from metric.New method (#9116) 2021-04-13 14:40:03 -04: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 fix: Linter fixes for plugins/parsers/[a-z]* (#10145) 2021-11-24 11:52:51 -07:00
parser.go Revive fixes - part 2 (#8835) 2021-02-16 18:19:50 -05:00
parser_test.go fix: Linter fixes for plugins/parsers/[a-z]* (#10145) 2021-11-24 11:52:51 -07:00

README.md

Influx Line Protocol

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_version = "internal"