Skip to content
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

winlog: allow users to configure providers list #4553

Merged
merged 1 commit into from
Nov 7, 2022
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/winlog/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.9.0"
changes:
- description: Allow users to configure providers list.
type: enhancement
link: https://github.com/elastic/integrations/pull/4553
- version: "1.8.0"
changes:
- description: Update package to ECS 8.5.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ name: {{channel}}
{{#if preserve_original_event}}
include_xml: true
{{/if}}
{{#if providers}}
provider:
{{#each providers as |p|}}
- {{p}}
{{/each}}
{{/if}}
{{#if event_id}}
event_id: {{event_id}}
{{/if}}
Expand Down
7 changes: 7 additions & 0 deletions packages/winlog/data_stream/winlog/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ streams:
type: bool
multi: false
default: false
- name: providers
type: text
title: Providers
description: A list of providers (source names) to include.
required: false
multi: true
show_user: false
- name: event_id
type: text
title: Event ID
Expand Down
2 changes: 1 addition & 1 deletion packages/winlog/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: winlog
title: Custom Windows Event Logs
description: Collect and parse logs from any Windows event log channel with Elastic Agent.
type: integration
version: "1.8.0"
version: "1.9.0"
release: ga
conditions:
kibana.version: '^7.16.0 || ^8.0.0'
Expand Down