SPLK-5001 SPL Search Proficiency Practice Question
You need to calculate the average time delta between 'login' and 'logout' events for each user. Which command approach is most effective?
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
✓
index=auth | transaction user_id | stats avg(duration) by user_id
Transaction is effective for grouping events by a common ID and calculating duration.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
index=auth | transaction user_id | stats avg(duration) by user_id
Why this is correct
The transaction command automatically calculates a 'duration' field for grouped events.
- ✗
index=auth | delta _time as time_diff by user_id
Why it's wrong here
The delta command calculates differences between successive rows, not event pairs.
- ✗
index=auth | stats min(_time) as start, max(_time) as end by user_id | eval delta=end-start
Why it's wrong here
This logic assumes only one pair of events per user, which is inaccurate.
- ✗
index=auth | eval time_diff = logout_time - login_time
Why it's wrong here
This requires pre-processing the log events to have both timestamps on the same line.
About these practice questions
Courseiva writes every SPLK-5001 question from scratch — 203 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
JA
Written and reviewed by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
Last reviewed August 2026 · checked against the official Splunk exam blueprint
This SPLK-5001 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-5001 exam.