Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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 @@
# later versions go on top
- version: "2.20.1"
changes:
- description: Fix Kerberos ticket StatusDescription not being populated when winlog.event_data.Status arrives in lower case in the Security event log ingest pipeline.
type: bugfix
link: https://github.com/elastic/integrations/pull/19919
- version: "2.20.0"
changes:
- description: Populate event.action and event.type for PAM authentication failure events across all modules.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1381,7 +1381,7 @@ processors:
!["4768", "4769", "4770", "4771", "4793"].contains(ctx.event.code)) {
return;
}
ctx.winlog.event_data.put("StatusDescription", params[ctx.winlog.event_data.Status]);
ctx.winlog.event_data.put("StatusDescription", params[ctx.winlog.event_data.Status.toUpperCase()]);
- date:
field: winlog.event_data.ClientCreationTime
tag: date_clientcreationtime
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: 3.4.0
name: system
title: System
version: "2.20.0"
version: "2.20.1"
description: Collect system logs and metrics from your servers with Elastic Agent.
type: integration
categories:
Expand Down
5 changes: 5 additions & 0 deletions packages/windows/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "3.8.4"
changes:
- description: Fix Kerberos ticket StatusDescription not being populated when winlog.event_data.Status arrives in lower case in the forwarded Security event log ingest pipeline.
type: bugfix
link: https://github.com/elastic/integrations/pull/19919
- version: "3.8.3"
changes:
- description: Map Sysmon event 26 file delete hashes to `file.hash` instead of `process.hash`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ processors:
!["4768", "4769", "4770", "4771"].contains(ctx.event.code)) {
return;
}
ctx.winlog.event_data.put("StatusDescription", params[ctx.winlog.event_data.Status]);
ctx.winlog.event_data.put("StatusDescription", params[ctx.winlog.event_data.Status.toUpperCase()]);
- script:
lang: painless
ignore_failure: false
Expand Down
2 changes: 1 addition & 1 deletion packages/windows/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: windows
title: Windows
version: 3.8.3
version: 3.8.4
description: Collect logs and metrics from Windows OS and services with Elastic Agent.
type: integration
categories:
Expand Down
Loading