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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...

Global Splunk User Group Events: May + June 2026

Your Splunk Community Awaits: Discover Upcoming User Group Events Worldwide    Staying ahead in the fast-paced ...