telegraf/plugins/parsers/influx
Paweł Żak 55e4bb6808
chore: Enable G103 rule for gosec (#13038)
2023-04-12 07:32:46 -06:00
..
influx_upstream chore: Fix linter findings for errorlint (part2) (#12702) 2023-02-22 12:08:46 +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 chore: Enable G103 rule for gosec (#13038) 2023-04-12 07:32:46 -06:00
handler.go chore: Fix linter findings for errorlint (part2) (#12702) 2023-02-22 12:08:46 +01: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 errorlint (part2) (#12702) 2023-02-22 12:08:46 +01:00
parser.go chore: Fix linter findings for errorlint (part2) (#12702) 2023-02-22 12:08:46 +01:00
parser_test.go chore: Fix linter findings for errorlint (part2) (#12702) 2023-02-22 12:08:46 +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"