Here is the search I am trying to do and I hope I can explain this correctly....I am searching for dlp events where there are x events within a period of time for my testing I am using 1 hour...
index=epp "content threat" Policy="Content Aware Protection - Content Threat Detected"
`comment("Creating buckets of 10 minutes")`
| bin _time span=1h | stats count values(MatchedItem) by _time ClientUser, DestinationDetails, MatchedItem
| eval PotentialLeak=if(count >= 10, 1, 0)
| search PotentialLeak = 1
What I am trying to get out of this is a table of the following;
_time, ClientUser, DestinationDetails, MatchedItem etc
However, I only see one MatchedItem, not all of them for one user I know there is 12 but only see one of them.
Hope that explains it well enough and appreciate your help.
... View more