Splunk Search

aggregation over _time

damucka
Builder

Hello,

I have the following search:

index=mlbso sourcetype=BWP_hanatraces "long running cursor detected"  | sort - _time
| table _time CONNECTION_ID CONNECTION_STATUS IDLE_TIME HOST

It gives the following output:

alt text

I would like to create a variable that would correspond to max IDLE_TIME, so e.g. on the example above 26058. Then it would be good to have it in the h:mm format, meaning 1:16 (h:mm).

How would I achieve this?

Kind Regards,
Kamil

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try this (Splunk generally give result in reverse chronological order, so you may not need that sort command)

index=mlbso sourcetype=BWP_hanatraces "long running cursor detected"  
 | table _time CONNECTION_ID CONNECTION_STATUS IDLE_TIME HOST
 | rex field=IDLE_TIME "(?<idletime>\d+) sec" 
 | eventstats max(idletime) as MAX_IDLE_TIME 
 | eval MAX_IDLE_TIME =tostring(MAX_IDLE_TIME ,"duration")

View solution in original post

0 Karma

somesoni2
Revered Legend

Try this (Splunk generally give result in reverse chronological order, so you may not need that sort command)

index=mlbso sourcetype=BWP_hanatraces "long running cursor detected"  
 | table _time CONNECTION_ID CONNECTION_STATUS IDLE_TIME HOST
 | rex field=IDLE_TIME "(?<idletime>\d+) sec" 
 | eventstats max(idletime) as MAX_IDLE_TIME 
 | eval MAX_IDLE_TIME =tostring(MAX_IDLE_TIME ,"duration")
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!

How to find the worst searches in your Splunk environment and how to fix them

Everyone knows Splunk is a powerful platform for running searches and doing data analytics. Your ...

Share Your Feedback: On Admin Config Service (ACS)!

Help Us Build a Better Admin Config Service Experience (ACS)   We Want Your Feedback on Admin Config Service ...

Build the Future of Agentic AI: Join the Splunk Agentic Ops Hackathon

AI is changing how teams investigate incidents, detect threats, automate workflows, and build intelligent ...