Skip to content

Commit 7bc74ae

Browse files
authored
Fix contains check for forwarded tag (#1827)
1 parent 0f83b82 commit 7bc74ae

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

packages/kafka/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "0.7.1"
3+
changes:
4+
- description: Fix logic that checks for the 'forwarded' tag
5+
type: bugfix
6+
link: https://github.com/elastic/integrations/pull/1827
27
- version: "0.7.0"
38
changes:
49
- description: Update to ECS 1.12.0

packages/kafka/data_stream/log/agent/stream/log.yml.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
{{#each tags as |tag i|}}
1010
- {{tag}}
1111
{{/each}}
12-
{{#contains tags "forwarded"}}
12+
{{#contains "forwarded" tags}}
1313
publisher_pipeline.disable_host: true
1414
{{/contains}}
1515
exclude_files: [".gz$"]

packages/kafka/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
format_version: 1.0.0
22
name: kafka
33
title: Kafka
4-
version: 0.7.0
4+
version: 0.7.1
55
license: basic
66
description: This Elastic integration collects logs and metrics from Kafka
77
type: integration

0 commit comments

Comments
 (0)