Skip to content

Commit 7eee261

Browse files
authored
winlog - Fix example processors config (#1755)
The event ID value in the conditions should be a string.
1 parent 557ad06 commit 7eee261

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

packages/winlog/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 drop_event processor example by using event ID string values in conditions.
5+
type: bugfix
6+
link: https://github.com/elastic/integrations/pull/1755
27
- version: "1.0.0"
38
changes:
49
- description: make GA

packages/winlog/data_stream/winlog/manifest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ streams:
3838
# Winlog configuration example
3939
#processors:
4040
# - drop_event.when.not.or:
41-
# - equals.winlog.event_id: 903
42-
# - equals.winlog.event_id: 1024
41+
# - equals.winlog.event_id: '903'
42+
# - equals.winlog.event_id: '1024'
4343
- input: httpjson
4444
title: Windows ForwardedEvents via Splunk Enterprise REST API
4545
description: Collect ForwardedEvents via Splunk Enterprise REST API

packages/winlog/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Custom Windows event logs
44
description: |-
55
This Elastic integration collects custom Windows event logs
66
type: integration
7-
version: 1.0.0
7+
version: 1.0.1
88
release: ga
99
conditions:
1010
kibana.version: '^7.16.0'

0 commit comments

Comments
 (0)