telegraf/plugins/inputs/kafka_consumer_legacy
Joshua Powers 5e7c5c84e9
docs: Explain and note service inputs (#12870)
2023-03-27 14:12:35 +02:00
..
README.md docs: Explain and note service inputs (#12870) 2023-03-27 14:12:35 +02:00
kafka_consumer_legacy.go chore: Fix linter findings for errorlint (part5) (#12731) 2023-03-01 22:18:35 +01:00
kafka_consumer_legacy_integration_test.go chore: Bump golangci-lint from v1.51.0 to v1.51.2 (#12782) 2023-03-03 10:06:54 +01:00
kafka_consumer_legacy_test.go feat: Migrate influx and influx_upstream parsers to new style (#11432) 2022-07-06 15:23:13 -05:00
sample.conf fix: Restore sample configurations broken during initial migration (#11276) 2022-06-22 13:33:58 -06:00

README.md

Kafka Consumer Legacy Input Plugin

Deprecated in version 1.4. Please use Kafka Consumer input plugin

The Kafka consumer plugin polls a specified Kafka topic and adds messages to InfluxDB. The plugin assumes messages follow the line protocol. Consumer Group is used to talk to the Kafka cluster so multiple instances of telegraf can read from the same topic in parallel.

Service Input

This plugin is a service input. Normal plugins gather metrics determined by the interval setting. Service plugins start a service to listens and waits for metrics or events to occur. Service plugins have two key differences from normal plugins:

  1. The global or plugin specific interval setting may not apply
  2. The CLI options of --test, --test-wait, and --once may not produce output for this plugin

Global configuration options

In addition to the plugin-specific configuration settings, plugins support additional global and plugin configuration settings. These settings are used to modify metrics, tags, and field or create aliases and configure ordering, etc. See the CONFIGURATION.md for more details.

Configuration

# Read metrics from Kafka topic(s)
[[inputs.kafka_consumer_legacy]]
  ## topic(s) to consume
  topics = ["telegraf"]

  ## an array of Zookeeper connection strings
  zookeeper_peers = ["localhost:2181"]

  ## Zookeeper Chroot
  zookeeper_chroot = ""

  ## the name of the consumer group
  consumer_group = "telegraf_metrics_consumers"

  ## Offset (must be either "oldest" or "newest")
  offset = "oldest"

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

  ## Maximum length of a message to consume, in bytes (default 0/unlimited);
  ## larger messages are dropped
  max_message_len = 65536

Testing

Running integration tests requires running Zookeeper & Kafka. See Makefile for kafka container command.

Metrics

Example Output