From ca8a6cfac23532687a997946d4351c58a2857f45 Mon Sep 17 00:00:00 2001 From: reimda Date: Tue, 26 Jul 2022 12:53:06 -0600 Subject: [PATCH] chore: add missing section to kafka_consumer's sample.conf (#11553) --- plugins/inputs/kafka_consumer/sample.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/inputs/kafka_consumer/sample.conf b/plugins/inputs/kafka_consumer/sample.conf index 2357ec56e..140d30b57 100644 --- a/plugins/inputs/kafka_consumer/sample.conf +++ b/plugins/inputs/kafka_consumer/sample.conf @@ -92,6 +92,13 @@ ## '2 * max_processing_time'. # max_processing_time = "100ms" + ## The default number of message bytes to fetch from the broker in each + ## request (default 1MB). This should be larger than the majority of + ## your messages, or else the consumer will spend a lot of time + ## negotiating sizes and not actually consuming. Similar to the JVM's + ## `fetch.message.max.bytes`. + # consumer_fetch_default = "1MB" + ## Data format to consume. ## Each data format has its own unique set of configuration options, read ## more about them here: