nerdexam
Splunk

SPLK-1002 · Question #25

Which of the following statements describe the search below? (select all that apply) Index=main I transaction clientip host maxspan=30s maxpause=5s

The correct answer is A. Events in the transaction occurred within 5 seconds. B. It groups events that share the same clientip and host. D. The first and last events are no more than 30 seconds apart. Breaking down the transaction command parameters: (B) Listing 'clientip host' as fields means Splunk groups events that share the same values for both clientip AND host into a single transaction. (D) maxspan=30s sets the maximum total duration of a transaction - the time…

Correlating Events

Question

Which of the following statements describe the search below? (select all that apply) Index=main I transaction clientip host maxspan=30s maxpause=5s

Options

  • AEvents in the transaction occurred within 5 seconds.
  • BIt groups events that share the same clientip and host.
  • CThe first and last events are no more than 5 seconds apart.
  • DThe first and last events are no more than 30 seconds apart.

How the community answered

(37 responses)
  • A
    89% (33)
  • C
    11% (4)

Explanation

Breaking down the transaction command parameters: (B) Listing 'clientip host' as fields means Splunk groups events that share the same values for both clientip AND host into a single transaction. (D) maxspan=30s sets the maximum total duration of a transaction - the time between the first and last events cannot exceed 30 seconds. (A) maxpause=5s means the maximum allowed pause between any two consecutive events within a transaction is 5 seconds; if events are more than 5 seconds apart, a new transaction begins. (C) is incorrect - the 5-second limit applies to pauses between consecutive events (maxpause), not to the total span from first to last event.

Topics

#transaction command#event correlation#maxspan#maxpause

Community Discussion

No community discussion yet for this question.

Full SPLK-1002 Practice