Getting Data In

Trying to find average between two columns time

teegarden7070
Explorer

index=phantom_container AND owner!=null AND close_time!=null
| eval st=strptime(create_time, "%Y-%m-%dT%H:%M:%S")
| eval et=strptime(close_time, "%Y-%m-%dT%H:%M:%S")
| eval Dur=(et-st)/60
|table create_time close_time Dur id container_label owner_name

Here is the basic search, now I would like to find the average amount of time between create_time and close_time per owner_name. 

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
index=phantom_container AND owner!=null AND close_time!=null
| eval st=strptime(create_time, "%Y-%m-%dT%H:%M:%S")
| eval et=strptime(close_time, "%Y-%m-%dT%H:%M:%S")
| eval Dur=(et-st)/60
|table create_time close_time Dur id container_label owner_name
| stats avg(Dur) as average by owner_name

teegarden7070
Explorer

Thank you!

 

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 ...