-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Security_Solution][Endpoint] Resolver leverage ancestry array for queries #69264
Changes from 19 commits
facb497
97c359d
29cb1a0
2e33743
ba93305
cb467d7
5031536
b804ddb
d63287b
db8c3fd
7155add
89d0df6
e6e6749
1050a56
8f46bea
0060c24
db147d8
3f8c433
882b2f9
f8e898f
e253fed
b732114
0bf79ca
78a18f9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -313,6 +313,9 @@ export interface AlertEvent { | |
thread?: ThreadFields[]; | ||
uptime: number; | ||
user: string; | ||
Ext: { | ||
ancestry: string[]; | ||
}; | ||
}; | ||
file: { | ||
owner: string; | ||
|
@@ -445,6 +448,9 @@ export interface EndpointEvent { | |
entity_id: string; | ||
name?: string; | ||
}; | ||
Ext: { | ||
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. We use a capital here to avoid collisions with ecs core since the ancestry array is a custom extension field. 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. I was wondering what |
||
ancestry: string[]; | ||
}; | ||
}; | ||
} | ||
|
||
|
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.
these changes are because the origin node is now included in the ancestry map.