Splunk Infrastructure Overview — Question 65
Which search generates a field with a value of "hello"?
Answer options
- A. | makeresults field="hello"
- B. | makeresults | fields "hello"
- C. | makeresults | eval field="hello"
- D. | makeresults | eval field = make ("hello")
Correct answer: C
Explanation
The correct answer, C, uses the 'eval' command to assign the value 'hello' to the field, which is the proper method for creating a field with a specified value. Option A does not utilize the correct syntax for creating fields within 'makeresults', while options B and D do not effectively create a field with the desired value.