-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ancestry array to process object
Create new process_entity object and have process extend it The ancestry attribute is an array of process_entity. This array supersedes the lineage array in the process object. Additionally, it gives a way to compactly communicate key identifiers to look up full information for extended process parentage. Signed-off-by: Mitchell Wasson <[email protected]>
- Loading branch information
Showing
4 changed files
with
48 additions
and
18 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"caption": "Process Entity", | ||
"description": "The Process Entity object provides critical fields for referencing a process.", | ||
"name": "process_entity", | ||
"extends": "_entity", | ||
"attributes": { | ||
"cmd_line": { | ||
"requirement": "recommended" | ||
}, | ||
"created_time": { | ||
"description": "The time when the process was created/started.", | ||
"requirement": "recommended" | ||
}, | ||
"name": { | ||
"description": "The friendly name of the process, for example: <code>Notepad++</code>.", | ||
"type": "process_name_t" | ||
}, | ||
"path":{ | ||
"description": "The process file path.", | ||
"requirement": "optional" | ||
}, | ||
"pid": { | ||
"requirement": "recommended" | ||
}, | ||
"uid": { | ||
"description": "A unique identifier for this process assigned by the producer (tool). Facilitates correlation of a process event with other events for that process." | ||
} | ||
} | ||
} |