telegraf/plugins/parsers/influx
Paweł Żak 7807847356
chore: Wrap long lines in plugins/parsers (#12180)
2022-11-08 18:47:35 +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 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 chore: Wrap long lines in plugins/parsers (#12180) 2022-11-08 18:47:35 +01:00
parser.go feat: Migrate influx and influx_upstream parsers to new style (#11432) 2022-07-06 15:23:13 -05: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"