Splunk Search

How can I get total duration of time for which each user logged in to splunk for this month.

jitendragupta
Path Finder

We have many users using splunk dashboards and we want to know total time for a user logged in to splunk system for this month.
Using different query I am able to know the list of users, their last login or logout and dashboards accessed by them. But I am facing problem to calculate total time he or she logged in for entire month. In other words duration for which used my system.

Tags (1)
0 Karma

jitendragupta
Path Finder

Thanks dude for this query . It helped me and I am exploring more using this.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi jitendragupta,
I use this search to list all connections, see if it answers to your need.

index=_internal sourcetype=splunkd_ui_access user!="-"    
| stats earliest(_time) AS StartTime latest(_time) AS EndTime count by user date_mday    
| join type=left user         [        
     | rest /services/authentication/users                
     | rex field=id "https:\/\/127.0.0.1:8089\/(\w+\/)+(?<user>\w+)"                
     | rename realname AS Name               
     | fields user Name
      ]    
| search Name=*    
| eval         
     Duration=tostring(EndTime-StartTime,"Duration"),        
     StartTime=strftime(StartTime,"%d/%m/%Y %H.%M.%S"),        
     EndTime=strftime(EndTime,"%d/%m/%Y %H.%M.%S")    
| sort Name
| table Name StartTime EndTime Duration

Bye.
Giuseppe

Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...