-
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.
Merge pull request #782 from ocsf/logger
Add a Logger object that represents a device and associated product where events are logged.
- Loading branch information
Showing
3 changed files
with
57 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"caption": "Logger", | ||
"description": "The Logger object represents the device and product where events are stored with times for receipt and transmission. This may be at the source device where the event occurred, a remote scanning device, intermediate hops, or the ultimate destination.", | ||
"name": "logger", | ||
"extends": "_entity", | ||
"attributes": { | ||
"device": { | ||
"description": "The device where the events are logged.", | ||
"requirement": "recommended" | ||
}, | ||
"log_level": { | ||
"requirement": "optional" | ||
}, | ||
"log_name": { | ||
"requirement": "recommended" | ||
}, | ||
"log_provider": { | ||
"requirement": "recommended" | ||
}, | ||
"log_version": { | ||
"requirement": "optional" | ||
}, | ||
"logged_time": {}, | ||
"name": { | ||
"description": "The name of the logging product instance.", | ||
"requirement": "recommended" | ||
}, | ||
"product": { | ||
"description": "The product logging the event. This may be the event source product, a management server product, a scanning product, a SIEM, etc.", | ||
"requirement": "recommended" | ||
}, | ||
"transmit_time": { | ||
"description": "The time when the event was transmitted from the logging device to it's next destination", | ||
"requirement": "optional" | ||
}, | ||
"uid": { | ||
"description": "The unique identifier of the logging product instance.", | ||
"requirement": "recommended" | ||
}, | ||
"version": { | ||
"description": "The version of the logging product.", | ||
"requirement": "optional" | ||
} | ||
} | ||
} |
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