SPLK-1001 Practice Question: Creating Reports, Dashboards and Visualizations
Exhibit
| inputlookup user_activity.csv | search error=* | stats count by user | sort - count | head 10
Refer to the exhibit. The report returns 0 results even though there are error events in the data. What is the most likely issue?
⚠ Common exam trap
It's easy for candidates to assume Splunk field names are case-insensitive, similar to how some databases handle column names, but Splunk treats them as case-sensitive, leading to zero results when the case does not match.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The field name is 'error' but the data uses 'ERROR'
Splunk field names are case-sensitive. The search is looking for a field named 'error', but the CSV data contains a field named 'ERROR'. Since the field name does not match exactly, the `stats` command cannot find any events with the field 'error', resulting in zero results. Renaming the field in the search using `rename ERROR as error` or adjusting the field name in the data would resolve this.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The stats command is misspelled
Why it's wrong here
'stats' is spelled correctly; if it were misspelled, the search would fail and show an error message.
- ✗
The time range is not set
Why it's wrong here
Having no time range would default to 'All time' and still find events if they exist.
- ✓
The field name is 'error' but the data uses 'ERROR'
Why this is correct
Splunk searches are case-sensitive by default; 'error=*' will not match 'ERROR'.
- ✗
The CSV file has no header
Why it's wrong here
If there were no header, the field 'error' would not exist and the search would not match any events.
Visual reference
Go deeper
Related to this question
About these practice questions
This SPLK-1001 question is part of Courseiva's 502-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This SPLK-1001 practice question is part of Courseiva's free Splunk certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SPLK-1001 exam.