forked from Azure/Azure-Sentinel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create vimRegistryEventTemplate.yaml
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
ASIM/dev/Parser YAML templates/vimRegistryEventTemplate.yaml
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,41 @@ | ||
Parser: | ||
Title: File events ASIM parser for <product name> | ||
Version: '<parser version>' | ||
LastUpdated: <parser update date> | ||
Product: | ||
Name: <product name> | ||
Normalization: | ||
Schema: FileEvent | ||
Version: '<current schema version>' | ||
References: | ||
- Title: ASIM File Event Schema | ||
Link: https://aka.ms/ASimFileEventDoc | ||
- Title: ASIM | ||
Link: https://aka.ms/AboutASIM | ||
Description: | | ||
This ASIM parser supports normalizing the <product name> logs to the ASIM file activity normalized schema. | ||
ParserName: <parser function name> | ||
ParserParams: | ||
- Name: starttime | ||
Type: datetime | ||
Default: datetime(null) | ||
- Name: endtime | ||
Type: datetime | ||
Default: datetime(null) | ||
- Name: disabled | ||
Type: bool | ||
Default: false | ||
ParserQuery: | | ||
let parser = ( | ||
starttime:datetime = datetime(null) | ||
, endtime:datetime = datetime(null) | ||
, disabled:bool = false | ||
) | ||
{ | ||
<parser query body> | ||
}; | ||
parser ( | ||
starttime = starttime | ||
, endtime = endtime | ||
, disabled = disabled | ||
) |