Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/kafka_log/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
- version: "1.9.0"
changes:
- description: Add SASL mechanism configuration.
type: enhancement
link: https://github.com/elastic/integrations/pull/15647
- version: "1.8.1"
changes:
- description: Updated SSL description to be uniform and to include links to documentation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ group_id: {{group_id}}
{{#if client_id}}
client_id: {{client_id}}
{{/if}}
{{#if sasl_mechanism}}
sasl.mechanism: {{sasl_mechanism}}
{{/if}}
{{#if username}}
username: {{username}}
{{/if}}
Expand Down
16 changes: 16 additions & 0 deletions packages/kafka_log/data_stream/generic/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,22 @@ streams:
#- multiline:
# type: counter
# lines_count: 3
- name: sasl_mechanism
title: SASL Mechanism
description: SASL Auth Mechanism
type: select
options:
- text: None
value: ""
- text: PLAIN
value: PLAIN
- text: SCRAM-SHA-256
value: SCRAM-SHA-256
- text: SCRAM-SHA-512
value: SCRAM-SHA-512
default: ""
required: false
show_user: true
- name: username
type: text
title: Username
Expand Down
2 changes: 1 addition & 1 deletion packages/kafka_log/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: kafka_log
title: Custom Kafka Logs
description: Collect data from kafka topic with Elastic Agent.
type: integration
version: "1.8.1"
version: "1.9.0"
conditions:
kibana:
version: "^8.13.0 || ^9.0.0"
Expand Down