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!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...