-
Notifications
You must be signed in to change notification settings - Fork 439
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
digital_guardian: fix mapping of dg_alert.alert_wb field and add export profile guid #12818
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
packages/digital_guardian/data_stream/arc/_dev/test/pipeline/test-dg-arc.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{"dg_comment":"-","dg_description":"This file outlook.exe was going to [demo.digitalg@gmail.com]","dg_guid":"1dc3c1fa-5474-4fc0-a7c3-74ff42d28e5e","dg_name":"test has attached a Salesforce data to an email","dg_tenant":"279b59f3-02f3-44ea-a7c3-9bac2eb0224d","dg_utype":"Incident","inc_assign":"test@dgdemo","inc_creator":"dg","inc_id":"230523-WIQHA","inc_mtime":"2023-05-23 06:56:39","inc_sev":"Critical","inc_state":"Created"} | ||
{"dg_comment":"-","dg_description":"-","dg_guid":"c742c377-b429-428a-b0c9-515cbbf143be","dg_name":"Demo 10","dg_tenant":"279b59f3-02f3-44ea-a7c3-9bac2eb0224d","dg_utype":"Incident","inc_assign":"demo@dgdemo","inc_creator":"demo@dgdemo","inc_id":"230523-RG0AB","inc_mtime":"2023-05-23 11:53:11","inc_sev":"Critical","inc_state":"Escalated"} | ||
{"dg_comment":"-","dg_description":"-","dg_guid":"c742c377-b429-428a-b0c9-515cbbf143be","dg_name":"Demo 10","dg_tenant":"279b59f3-02f3-44ea-a7c3-9bac2eb0224d","dg_utype":"Incident","inc_assign":"demo@dgdemo","inc_creator":"demo@dgdemo","inc_id":"230523-RG0AB","inc_mtime":"2023-05-23 11:53:11","inc_sev":"Critical","inc_state":"Escalated","dg_time":"2024-11-05 07:20:41 PM","dg_processed_time":1730834913309,"dg_local_timestamp":"2024-11-05 02:20:41 PM","pi_fal":"2024-11-04 02:32:20 PM","pi_fcl":"2024-06-20 12:53:34 PM","pi_fml":"2024-11-04 09:37:26 AM","dg_attachments.dg_file_size":"1.8 MB","dg_file_size":"10.4 KB"} | ||
{"dg_alert.alert_al":"High","dg_alert.alert_at":"Prompt","dg_alert.alert_bc":"User Decision","dg_alert.alert_did":"-","dg_alert.alert_etl":"2025-01-22 02:09:02 PM","dg_alert.alert_etu":"2025-01-22 07:09:02 PM","dg_alert.alert_ur":"Photo for team activity","dg_alert.alert_wb":"No","dg_alert.dg_category_name":"0 _MacPRD:AllComputerPol","dg_alert.dg_detection_source":"Alert","dg_alert.dg_name":"prompt-justify external file uploads (Mac)","dg_alert.dg_policy.dg_category_name":".01 MAC Prod Global","dg_alert.dg_policy.dg_name":"__Mac All Agents","dg_alert.dg_rule_action_type":"Prompt"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,48 @@ | ||
- name: digital_guardian.arc | ||
type: group | ||
fields: | ||
- name: dg_alert.alert_al | ||
type: keyword | ||
description: Alert AL | ||
- name: dg_alert.alert_at | ||
type: keyword | ||
description: Alert AT | ||
- name: dg_alert.alert_bc | ||
type: keyword | ||
description: Alert BC | ||
- name: dg_alert.alert_did | ||
type: keyword | ||
description: Alert DID | ||
- name: dg_alert.alert_etl | ||
type: keyword | ||
description: Alert ETL | ||
- name: dg_alert.alert_etu | ||
type: date | ||
description: Alert ETU | ||
- name: dg_alert.alert_ur | ||
type: date | ||
description: Alert UR | ||
- name: dg_alert.alert_wb | ||
type: integer | ||
type: keyword | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The alternative here is to keep this as an |
||
description: Alert WB | ||
- name: dg_alert.dg_detection_source | ||
type: keyword | ||
description: Alert Detection Source | ||
- name: dg_alert.dg_category_name | ||
type: keyword | ||
description: Alert Category Name | ||
- name: dg_alert.dg_name | ||
type: keyword | ||
description: Alert Name | ||
- name: dg_alert.dg_policy.dg_category_name | ||
type: keyword | ||
description: Alert Policy Category Name | ||
- name: dg_alert.dg_policy.dg_name | ||
type: keyword | ||
description: Alert Policy Name | ||
- name: dg_alert.dg_rule_action_type | ||
type: keyword | ||
description: Alert Rule Action Type | ||
- name: dg_attachments.dg_file_size_bytes | ||
type: long | ||
description: File Size in Bytes | ||
|
@@ -73,6 +103,9 @@ | |
- name: dg_utype | ||
type: keyword | ||
description: Operation Type | ||
- name: export_profile | ||
type: keyword | ||
description: Export Profile GUID for the Event | ||
- name: inc_assign | ||
type: keyword | ||
description: Incident Assignee | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks