Splunk Search

Average duration

DTERM
Contributor

What is the syntax to obtain the average duration for each severity type in a query? A field exists called app_duration=0d 0h 40m 3s. I need the average for each severity type.

Thanks.

Tags (1)
1 Solution

bwooden
Splunk Employee
Splunk Employee

First convert the app_duration to a format convert can use. Then, use convert to store app_duration in seconds. Next, average all seconds by severity_type. Finally, re-format avg_app_duration for each severity_type in the human readable format of HH:MM:SS.

eval app_duration=replace(replace(replace(app_duration,"d\s","+"),"h|m|s",""),"\s",":") 
| convert dur2sec(app_duration) 
| stats avg(app_duration) as avg_app_duration by severity_type 
| eval avg_app_duration=tostring(round(avg_app_duration,0),"duration")

View solution in original post

bwooden
Splunk Employee
Splunk Employee

First convert the app_duration to a format convert can use. Then, use convert to store app_duration in seconds. Next, average all seconds by severity_type. Finally, re-format avg_app_duration for each severity_type in the human readable format of HH:MM:SS.

eval app_duration=replace(replace(replace(app_duration,"d\s","+"),"h|m|s",""),"\s",":") 
| convert dur2sec(app_duration) 
| stats avg(app_duration) as avg_app_duration by severity_type 
| eval avg_app_duration=tostring(round(avg_app_duration,0),"duration")
Get Updates on the Splunk Community!

Accelerating Observability as Code with the Splunk AI Assistant

We’ve seen in previous posts what Observability as Code (OaC) is and how it’s now essential for managing ...

Integrating Splunk Search API and Quarto to Create Reproducible Investigation ...

 Splunk is More Than Just the Web Console For Digital Forensics and Incident Response (DFIR) practitioners, ...

Congratulations to the 2025-2026 SplunkTrust!

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