Question 145 of 500
Transactions and Event CorrelationhardMultiple SelectObjective-mapped

Quick Answer

The answer is that the three conditions are a shared 'by' field value, a maximum total time span (maxspan), and a maximum pause between consecutive events (maxpause). This is correct because without 'startswith' or 'endswith' markers, the transaction command relies entirely on these three parameters to define a logical group: all events must share the same value in the specified 'by' field, the entire set of events must occur within the maxspan window, and the time gap between any two consecutive events must not exceed the maxpause value. On the Splunk SPLK-1003 exam, this concept tests your understanding of how transaction grouping conditions work when no explicit start or end boundaries are provided, a common trap being that candidates forget maxpause applies only to consecutive events, not the overall duration. A helpful memory tip is to think of the "Three Bs": By field, Big window (maxspan), and Break between events (maxpause).

SPLK-1003 Transactions and Event Correlation Practice Question

This SPLK-1003 practice question tests your understanding of transactions and event correlation. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Which THREE conditions must be met for events to be grouped into the same transaction when using the 'transaction' command without any 'startswith' or 'endswith' options? (Choose three.)

Question 1hardmulti select
Full question →

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

Events must have the same value in the field specified by the 'by' clause.

Option A is correct because the 'by' clause in the 'transaction' command defines a field whose value must be identical across all events in a transaction. Without 'startswith' or 'endswith', the transaction command groups events solely based on the 'by' field, the 'maxspan' time window, and the 'maxpause' gap between consecutive events. This ensures that only events sharing the same field value are considered part of the same logical transaction.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Events must have the same value in the field specified by the 'by' clause.

    Why this is correct

    The 'by' clause defines the grouping field.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The time difference between the first and last event must not exceed the maxspan value.

    Why this is correct

    maxspan limits the total duration of the transaction.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Events must be from the same sourcetype.

    Why it's wrong here

    Transaction can correlate across different sourcetypes.

  • The time gap between consecutive events must not exceed the maxpause value.

    Why this is correct

    maxpause ensures events are close together in time.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Events must appear in chronological order with no missing timestamps.

    Why it's wrong here

    Transaction handles events in order based on _time, but missing timestamps are not a requirement.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume events must share the same sourcetype (Option C) because they confuse the 'transaction' command with the 'stats' or 'eventstats' commands, which do not inherently require sourcetype matching, or they mistakenly think chronological order is enforced (Option E) when in fact the command handles ordering internally.

Detailed technical explanation

How to think about this question

Under the hood, the 'transaction' command uses a stateful streaming operation that maintains a buffer of events per 'by' field value. It evaluates each incoming event against the maxpause threshold (default 1 second) to determine if it belongs to the current transaction or starts a new one, and the maxspan value (default 180 seconds) caps the total duration of the transaction. In real-world scenarios, this is critical for correlating web requests across multiple tiers (e.g., Apache logs, application logs, database logs) where events share a session ID but come from different sourcetypes.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the SPLK-1003 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related SPLK-1003 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SPLK-1003 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SPLK-1003 question test?

Transactions and Event Correlation — This question tests Transactions and Event Correlation — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Events must have the same value in the field specified by the 'by' clause. — Option A is correct because the 'by' clause in the 'transaction' command defines a field whose value must be identical across all events in a transaction. Without 'startswith' or 'endswith', the transaction command groups events solely based on the 'by' field, the 'maxspan' time window, and the 'maxpause' gap between consecutive events. This ensures that only events sharing the same field value are considered part of the same logical transaction.

What should I do if I get this SPLK-1003 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

2 more ways this is tested on SPLK-1003

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Which TWO options are valid parameters of the `transaction` command?

medium
  • A.timeformat
  • B.maxpause
  • C.sequential
  • D.keepevicted
  • E.fieldlist

Why B: Correct options: B (maxpause) and D (keepevicted). Option A (timeformat) is for time parsing, not transaction. Option C (fieldlist) is not a parameter; fields are given as arguments. Option E (sequential) is not a parameter.

Variation 2. A company wants to correlate events from multiple sources that share a common transaction ID. The events arrive in real time but with variable delays. Which transaction option ensures that a transaction closes after 2 minutes of inactivity?

medium
  • A.endswith="end"
  • B.maxspan=2m
  • C.maxpause=2m
  • D.startswith="start"

Why C: Option B is correct because maxpause closes a transaction after a period of inactivity. Option A (maxspan) would close after total time. Option C (startswith) and Option D (endswith) define boundaries.

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This SPLK-1003 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-1003 exam.