Skip to content

Commit 7460737

Browse files
committed
Fix contains check for forwarded tag
1 parent 31bc4c9 commit 7460737

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

packages/osquery/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: "1.0.1"
3+
changes:
4+
- description: Fix logic that checks for the 'forwarded' tag
5+
type: bugfix
6+
link: https://github.com/elastic/integrations/pull/1839
27
- version: "1.0.0"
38
changes:
49
- description: GA package

packages/osquery/data_stream/result/agent/stream/log.yml.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tags:
1414
{{#if preserve_original_event}}
1515
- preserve_original_event
1616
{{/if}}
17-
{{#contains tags "forwarded"}}
17+
{{#contains "forwarded" tags}}
1818
publisher_pipeline.disable_host: true
1919
{{/contains}}
2020
{{#if processors.length}}

packages/osquery/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: osquery
22
title: Osquery Log Collection
3-
version: 1.0.0
3+
version: 1.0.1
44
release: ga
55
description: This Elastic integration collects logs from Osquery instances
66
type: integration

0 commit comments

Comments
 (0)