Quantcast
Channel: Questions in topic: "splunk-enterprise"
Viewing all articles
Browse latest Browse all 47296

How do I write this SQL query as a join search in Splunk?

$
0
0
I will ask my question using online forum as an example. It has Event Log that tracks all user actions from login to logout. Contains the following significant fields: `EventTime`, `UserID`, `IP address`, `Action`. We want to write a search that identifies users that were banned ( `Action='Ban'` ) and then quickly came back under another `UserID`, but still with the same `IP`. In SQL I would use the following `SELF JOIN` (assuming `TimeDiff` is a valid function returning seconds): SELECT ev1.IP, ev1.UserID, ev1.EventTime, ev2.UserID, ev2.EventTime, ev2.Action FROM EventLog ev1 JOIN Eventlog ev2 ON ev1.IP = ev2.IP AND ev1.UserID != ev2.UserID AND ev1.EventTime < ev2.EventTime AND TimeDiff(ev2.EventTime, ev1.EventTime) <= 60 WHERE ev1.Action = 'Ban' How to write such a search in Splunk?

Viewing all articles
Browse latest Browse all 47296

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>