Replies: 1 comment
-
Suggestion: the thing that collects the log from the origin is the earliest timestamped entry in an array called something like {
"metadata": {
"origin": "WindowsEventLog",
"history": [
{
"time": "2022-08-08T14:00:00Z",
"id": "7f36b7d2-7b34-4237-9a65-3e5ecf2e1059",
"product": "Splunk Universal Forwarder",
"version": "1.88"
},
{
"time": "2022-08-08T14:01:00Z",
"id": "1eadc0cd-9d25-4dba-96b4-58e9a3ecea74",
"product": "Splunk Relay",
"version": "1.4"
}
]
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There needs to be a clear and consistent place for information to determines the original source of an OCSF event, AKA "What is the thing that made the log called?". This would exist within the base event and apply to all OCSF events regardless of category and class.
Note: In all options except 1 and 5,
product
is removed from the base event. In all casesproduct
remains an object, only placement and usage changes in any proposal.Move
product
object inside ofmetadata
object. Moving it into the metadata object makes a clear distinction that it is intended to describe information about a log vs information from a log. It has the following attributes, onlyvendor
needs to be added:Introduce
producer
object in addition to the existingproduct
object, would exist withinmetadata
, whileproduct
would be removed. Distinguished by theproducer
being the source of an event, whileproduct
is for information about a product from within a log. E.g. EDR providing information about which product, version, vendor etc. a process belongs to.producer
would have the following attributes:Individual attributes within
Origin
object instead of a separate object.metadata.source
Identical to proposal 2 except it uses the word
source
instead of `producer'.origin.product
Same as 1, but places
product
withinorigin
object.origin.producer
Same as 2, but places
producer
withinorigin
object.9 votes ·
Beta Was this translation helpful? Give feedback.
All reactions