Skip to content
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
7 changes: 7 additions & 0 deletions packages/o365/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# newer versions go on top
- version: "2.16.1"
changes:
- description: |
Ignore failures in rename process for organization fields to avoid collision with Agentless organization field.
This is a temporary workaround until https://github.com/elastic/kibana/issues/221312 is addressed.
type: bugfix
link: https://github.com/elastic/integrations/pull/13983
- version: "2.16.0"
changes:
- description: Populate `message` field from the O365 Audit Log `Name` field instead of `Comments` in SecurityComplianceAlerts events to better reflect Alert Titles.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ processors:
field: o365audit.OrganizationId
target_field: organization.id
ignore_missing: true
ignore_failure: true

- json:
tag: json-extract-stringly-AdditionalInfo
Expand Down Expand Up @@ -361,6 +362,7 @@ processors:
field: o365audit.OrganizationName
target_field: organization.name
ignore_missing: true
ignore_failure: true
if: ctx.event?.code == "ExchangeAdmin"
- rename:
field: o365audit.OriginatingServer
Expand Down Expand Up @@ -388,6 +390,7 @@ processors:
field: o365audit.OrganizationName
target_field: organization.name
ignore_missing: true
ignore_failure: true
if: ctx.event?.code == "ExchangeItem"
- rename:
field: o365audit.OriginatingServer
Expand Down Expand Up @@ -1092,6 +1095,7 @@ processors:
- lowercase:
field: organization.id
ignore_missing: true
ignore_failure: true
- set:
field: host.id
copy_from: organization.id
Expand Down
2 changes: 1 addition & 1 deletion packages/o365/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: o365
title: Microsoft Office 365
version: "2.16.0"
version: "2.16.1"
description: Collect logs from Microsoft Office 365 with Elastic Agent.
type: integration
format_version: "3.2.3"
Expand Down