The correct field is user , because Splunk ' s Common Information Model provides normalized fields that allow heterogeneous security data sources to be queried consistently. Authentication, endpoint, identity, operating-system, and application logs frequently use different native names for the same concept—for example, username, account_name, UserName, or src_user. CIM mappings normalize the appropriate value into the canonical user field.
This becomes particularly important when a detection performs aggregation such as:
| stats count by user
If contributing sources fail to populate user consistently, activity belonging to the same account can be fragmented, omitted, or incorrectly represented in the detection results. action identifies the result or nature of activity rather than the account responsible for it. user_id may occur in individual schemas but is not the general CIM field being tested here. identity represents a different conceptual object and is not the standard aggregation field for this use case.
The question appears on page 1 of the supplied certification material.
Study Guide topics: Common Information Model, CIM normalization, normalized fields, data-model consistency, user attribution, detection data preparation.
Submit