SPLK-1003 • Practice Test 2 — 25 Questions
Free SPLK-1003 practice test 2 — 25 questions with explanations. No signup required.
A financial services company uses Splunk to detect fraudulent transactions. Each transaction event has fields: `user_id`, `amount`, `merchant`, `timestamp`. The fraud detection team wants to identify users who make multiple small transactions (under $50) totaling over $200 within a 1-hour window, which may indicate testing stolen credit cards. They write the following search:
`index=transactions sourcetype=payment amount<50 | transaction user_id maxspan=1h | where sum(amount) > 200`
This search runs but returns no results, even though manual inspection shows users with such patterns. What is the primary reason the search fails?