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
Get Updates on the Splunk Community!

See just what you’ve been missing | Observability tracks at Splunk University

Looking to sharpen your observability skills so you can better understand how to collect and analyze data from ...

Weezer at .conf25? Say it ain’t so!

Hello Splunkers, The countdown to .conf25 is on-and we've just turned up the volume! We're thrilled to ...

How SC4S Makes Suricata Logs Ingestion Simple

Network security monitoring has become increasingly critical for organizations of all sizes. Splunk has ...