Skip to content

Commit 28740b7

Browse files
stefans-elasticagithomas
authored andcommitted
feat: expose sasl mechanism configuration in kafka_log package (elastic#15647)
* feat: expose sasl mechanism configuration in kafka_log package * update PR id in changelog * CI failure fix
1 parent d6421ff commit 28740b7

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-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/15647
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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,22 @@ 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: None
85+
value: ""
86+
- text: PLAIN
87+
value: PLAIN
88+
- text: SCRAM-SHA-256
89+
value: SCRAM-SHA-256
90+
- text: SCRAM-SHA-512
91+
value: SCRAM-SHA-512
92+
default: ""
93+
required: false
94+
show_user: true
7995
- name: username
8096
type: text
8197
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)