There is a global search named “global_search” defined on a form as shown below:
<search id=“global_search”>
<query>
index-_internal source-*splunkd.log | stats count by component, log_level
</query>
</search>
Which of the following would be a valid post-processing search? (Select all that apply.)
- | tstats count
- sourcetype=mysourcetype
- stats sum(count) AS count by log level
- search log_level=error | stats sum(count) AS count by component
Answer(s): C,D
Reference:
https://docs.splunk.com/Documentation/Splunk/8.1.2/Viz/Savedsearches
Reveal Solution
Next Question