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

Cherry-pick #19003 to 7.x: Winlogbeat: fix powershell unprefixed fields in fields.yml #19009

Merged
merged 1 commit into from
Jun 5, 2020
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
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Improve ECS field mappings in Sysmon module. `rule.name` is populated for all events when present. {issue}18364[18364]
- Add Powershell module. Support for event ID's: `400`, `403`, `600`, `800`, `4103`, `4014`, `4105`, `4106`. {issue}16262[16262] {pull}18526[18526]
- Fix Powershell processing of downgraded engine events. {pull}18966[18966]
- Fix unprefixed fields in `fields.yml` for Powershell module {issue}18984[18984]

*Functionbeat*

Expand Down
10 changes: 5 additions & 5 deletions winlogbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7482,7 +7482,7 @@ These are the event fields specific to the module for the Microsoft-Windows-Powe



*`id`*::
*`powershell.id`*::
+
--
Shell Id.
Expand All @@ -7493,7 +7493,7 @@ example: Microsoft Powershell

--

*`pipeline_id`*::
*`powershell.pipeline_id`*::
+
--
Pipeline id.
Expand All @@ -7504,7 +7504,7 @@ example: 1

--

*`runspace_id`*::
*`powershell.runspace_id`*::
+
--
Runspace id.
Expand All @@ -7515,7 +7515,7 @@ example: 4fa9074d-45ab-4e53-9195-e91981ac2bbb

--

*`sequence`*::
*`powershell.sequence`*::
+
--
Sequence number of the powershell execution.
Expand All @@ -7526,7 +7526,7 @@ example: 1

--

*`total`*::
*`powershell.total`*::
+
--
Total number of messages in the sequence.
Expand Down
10 changes: 5 additions & 5 deletions x-pack/winlogbeat/module/powershell/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@
release: beta
fields:

- name: id
- name: powershell.id
type: keyword
description: Shell Id.
example: Microsoft Powershell

- name: pipeline_id
- name: powershell.pipeline_id
type: keyword
description: Pipeline id.
example: "1"

- name: runspace_id
- name: powershell.runspace_id
type: keyword
description: Runspace id.
example: "4fa9074d-45ab-4e53-9195-e91981ac2bbb"

- name: sequence
- name: powershell.sequence
type: long
description: Sequence number of the powershell execution.
example: 1

- name: total
- name: powershell.total
type: long
description: Total number of messages in the sequence.
example: 10
Expand Down
2 changes: 1 addition & 1 deletion x-pack/winlogbeat/module/powershell/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.