From 975b41e0547cced85251238c45dda1c7b794bba5 Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Fri, 15 May 2026 12:34:59 +0200 Subject: [PATCH] docs: outputs: kafka: document otlp_logs_partition_by_resource parameter - Add `otlp_logs_partition_by_resource` boolean parameter to the configuration parameters table Note, covers a code update without a doc update PR. Signed-off-by: Eric D. Schabell --- pipeline/outputs/kafka.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pipeline/outputs/kafka.md b/pipeline/outputs/kafka.md index 2a0d2f367..bf3aee119 100644 --- a/pipeline/outputs/kafka.md +++ b/pipeline/outputs/kafka.md @@ -24,6 +24,7 @@ This plugin supports the following parameters: | `group_id` | Consumer group ID. | _none_ | | `message_key` | Optional key to store the message. | _none_ | | `message_key_field` | If set, the value of `message_key_field` in the record will indicate the message key. If not set or not found in the record, `message_key` is used if set. | _none_ | +| `otlp_logs_partition_by_resource` | When using `otlp_json` or `otlp_proto` format for logs, send each OTLP resource's logs as a separate Kafka message. | `false` | | `queue_full_retries` | Number of local retries to enqueue data when the `rdkafka` queue is full. The interval between retries is 1 second. Set to `0` for unlimited retries. | `10` | | `raw_log_key` | When using the `raw` format, the value of `raw_log_key` in the record is sent to Kafka as the payload. | _none_ | | `rdkafka.{property}` | `{property}` can be any [librdkafka property](https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md). | _none_ |