Skip to content

Use decode_xml_wineventlog in system Splunk inputs #924

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2021
Merged
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/system/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.12.1"
changes:
- description: Change Splunk input to use the decode_xml_wineventlog processor.
type: enhancement
link: https://github.com/elastic/integrations/pull/
- version: "0.12.0"
changes:
- description: Add Splunk input for application, system, and security data streams.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ processors:
fail_on_error: false
- drop_fields:
fields: json
- decode_xml:
- decode_xml_wineventlog:
field: event.original
target_field: winlog
schema: wineventlog
ignore_missing: true
ignore_failure: true
map_ecs_fields: true
- timestamp:
field: winlog.time_created
layouts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ processors:
fail_on_error: false
- drop_fields:
fields: json
- decode_xml:
- decode_xml_wineventlog:
field: event.original
target_field: winlog
schema: wineventlog
ignore_missing: true
ignore_failure: true
map_ecs_fields: true
- timestamp:
field: winlog.time_created
layouts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ processors:
fail_on_error: false
- drop_fields:
fields: json
- decode_xml:
- decode_xml_wineventlog:
field: event.original
target_field: winlog
schema: wineventlog
ignore_missing: true
ignore_failure: true
map_ecs_fields: true
- timestamp:
field: winlog.time_created
layouts:
Expand Down
2 changes: 1 addition & 1 deletion packages/system/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: system
title: System
version: 0.12.0
version: 0.12.1
license: basic
description: System Integration
type: integration
Expand Down