Skip to content

Commit 00857d0

Browse files
feat: expose sasl mechanism configuration in kafka_log package
1 parent 18270cb commit 00857d0

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

packages/kafka_log/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
- version: "1.9.0"
2+
changes:
3+
- description: Add SASL mechanism configuration.
4+
type: enhancement
5+
link: https://github.com/elastic/integrations/pull/1
16
- version: "1.8.1"
27
changes:
38
- description: Updated SSL description to be uniform and to include links to documentation.

packages/kafka_log/data_stream/generic/agent/stream/kafka.yml.hbs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ group_id: {{group_id}}
1717
{{#if client_id}}
1818
client_id: {{client_id}}
1919
{{/if}}
20+
{{#if sasl_mechanism}}
21+
sasl.mechanism: {{sasl_mechanism}}
22+
{{/if}}
2023
{{#if username}}
2124
username: {{username}}
2225
{{/if}}

packages/kafka_log/data_stream/generic/manifest.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,19 @@ streams:
7676
#- multiline:
7777
# type: counter
7878
# lines_count: 3
79+
- name: sasl_mechanism
80+
title: SASL Mechanism
81+
description: SASL Auth Mechanism
82+
type: select
83+
options:
84+
- text: PLAIN
85+
value: PLAIN
86+
- text: SCRAM-SHA-256
87+
value: SCRAM-SHA-256
88+
- text: SCRAM-SHA-512
89+
value: SCRAM-SHA-512
90+
required: false
91+
show_user: true
7992
- name: username
8093
type: text
8194
title: Username

packages/kafka_log/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: kafka_log
33
title: Custom Kafka Logs
44
description: Collect data from kafka topic with Elastic Agent.
55
type: integration
6-
version: "1.8.1"
6+
version: "1.9.0"
77
conditions:
88
kibana:
99
version: "^8.13.0 || ^9.0.0"

0 commit comments

Comments
 (0)