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
5 changes: 5 additions & 0 deletions packages/sentinel_one/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.0.1"
changes:
- description: Split domain-qualified `user.name` values into `user.domain`.
type: bugfix
link: https://github.com/elastic/integrations/pull/16728
- version: "2.0.0"
changes:
- description: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,11 @@ processors:
field: json.osUsername
target_field: user.name
ignore_missing: true
- dissect:
field: user.name
pattern: '%{user.domain}\%{user.name}'
if: ctx.user?.name?.contains('\\') == true
description: "Split user and domain"
- append:
field: related.user
value: '{{{user.name}}}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,11 @@ processors:
field: json.alertInfo.loginsUserName
target_field: user.name
ignore_missing: true
- dissect:
field: user.name
pattern: '%{user.domain}\%{user.name}'
if: ctx.user?.name?.contains('\\') == true
description: "Split user and domain"
- append:
field: related.user
value: '{{{user.name}}}'
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ processors:
field: user.name
copy_from: json.threatInfo.processUser
ignore_empty_value: true
- dissect:
field: user.name
pattern: '%{user.domain}\%{user.name}'
if: ctx.user?.name?.contains('\\') == true
description: "Split user and domain"
- append:
field: related.user
value: '{{{user.name}}}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,11 @@ processors:
tag: set_user_name
copy_from: sentinel_one.threat_event.user
ignore_empty_value: true
- dissect:
field: user.name
pattern: '%{user.domain}\%{user.name}'
if: ctx.user?.name?.contains('\\') == true
description: "Split user and domain"
- append:
field: related.user
tag: append_user_name_into_related_user
Expand Down
2 changes: 1 addition & 1 deletion packages/sentinel_one/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.4.0"
name: sentinel_one
title: SentinelOne
version: "2.0.0"
version: "2.0.1"
description: Collect logs from SentinelOne with Elastic Agent.
type: integration
categories:
Expand Down