Splunk Search

List of user who have logged into Splunk in the last 30 days and what Apps/Indexes they accessed.

aknsun
Path Finder

Hi,
Looking to get some help with a query for the following.

List of user who have logged into Splunk in the last 30 days and what Apps/Indexes they accessed.

Thanks.

Tags (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi aknsun,
to know the logged in Splunk users you have to run a search like this

index=_audit sourcetype = audittrail action="login attempt" 

To know the App accessed you can use something like this:

index=_internal sourcetype="splunk_web_access" method="GET" status="200" user!=-
| rex field=uri ".*\/app\/(?<app>[^\/]*)\/"

To correlate them, you could run something like this:

(index=_internal sourcetype="splunk_web_access" method="GET" status="200" user!=-) OR (index=_audit sourcetype = audittrail action="login attempt")
| rex field=uri ".*\/app\/(?<app>[^\/]*)\/"
| stats count BY user app

Ciao.
Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi aknsun,
to know the logged in Splunk users you have to run a search like this

index=_audit sourcetype = audittrail action="login attempt" 

To know the App accessed you can use something like this:

index=_internal sourcetype="splunk_web_access" method="GET" status="200" user!=-
| rex field=uri ".*\/app\/(?<app>[^\/]*)\/"

To correlate them, you could run something like this:

(index=_internal sourcetype="splunk_web_access" method="GET" status="200" user!=-) OR (index=_audit sourcetype = audittrail action="login attempt")
| rex field=uri ".*\/app\/(?<app>[^\/]*)\/"
| stats count BY user app

Ciao.
Giuseppe

0 Karma

aknsun
Path Finder

Thanks @gcusello. That worked.

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...