Splunk Search

List of users sharing files

fuzzy_rocks
Explorer

I am looking to get a list of unique users who share files. The logs have an entry when a file is accessed with the FileID and the UserID. Doing something like .....| stats dc(UserID) AS UserCount by FileID | where UserCount>1 gives me the number of files that are shared (more than 1 user accessed it), but I don't quite know how to extract the list of distinct UserIDs from that list. I've tried chart, but with a large number of users (>10,000) it produces a huge number of columns and seems to crash. i'm really just after the count of unique UserIDs, so if there is a way to produce just that number and avoid a huge table output that would be very helpful. Thanks!

Tags (3)
0 Karma
1 Solution

Ayn
Legend

The stats command values() does this.

... | stats dc(UserID) AS UserCount, values(UserID) as UniqueUsers by FileID | ...

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/CommonStatsFunctions

View solution in original post

Ayn
Legend

The stats command values() does this.

... | stats dc(UserID) AS UserCount, values(UserID) as UniqueUsers by FileID | ...

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/CommonStatsFunctions

fuzzy_rocks
Explorer

Thanks - exactly what I was looking for!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...