You need to create a data model object that combines two separate event sources. Which object type should you use?
Trap 1: Event object
Event objects represent singular log entries.
Trap 2: Search object
Search objects are for filtering, not combining separate event sources.
Trap 3: Lookup object
Lookup objects map fields, they do not aggregate event streams.
- A
Event object
Why wrong: Event objects represent singular log entries.
- B
Transaction object
Transaction objects aggregate multiple events into a single sequence.
- C
Search object
Why wrong: Search objects are for filtering, not combining separate event sources.
- D
Lookup object
Why wrong: Lookup objects map fields, they do not aggregate event streams.