A Splunk administrator uses a macro to normalize firewall logs into the CIM Network Traffic data model. The macro includes a field alias that maps `bytes_sent` to `bytes_out`. The mapping works in ad-hoc searches, but when the macro is used in a summary index search, the field is not populated. What is the most likely reason?
Search-time aliases create new fields; if the summary index only stores original fields, the aliased field may not be stored unless explicitly kept.
Why this answer
The macro applies the field alias at search time, but summary index searches store the results of the search output. Since the alias field `bytes_out` is derived from `bytes_sent` and not a native field in the data, it is not automatically included in the summary index unless explicitly referenced in the search output. Therefore, the field is not populated in the summary index, making option A the correct answer.