Splunk Search

Average of session duration

keshab
Path Finder

search SessionID="*" | stats range(_time) AS Session_Duration_sec by SessionID

I got the each session duration using the above command. Now how do I calculate the average of all those session duration??

Tags (1)

hjwang
Contributor

if you only wanna show final result , just

SessionID="*" | stats range(_time) AS Session_Duration_sec by SessionID | stats avg(Session_Duraion_sec)

else if you wanna append to first result

SessionID="*" | stats range(_time) AS Session_Duration_sec by SessionID | append [ search SessionID="*" | stats range(_time) AS Session_Duration_sec by SessionID | stats avg(Session_Duraion_sec)]

Here I think the Splunk should expand some calculating functions to add rows like addcoltotals to summarize the table results. If some of this have been existed, please let me know. Thanks!!

0 Karma

kristian_kolb
Ultra Champion

just pipe it through stats again

| stats avg(Session_Duration_Sec)

/kristian

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...