Splunk Search

How to find out the event with max duration?

chhawu
New Member

How to find out the event with max duration?
I used command transaction to group events and I want to find out the event with max duration.

0 Karma
1 Solution

HiroshiSatoh
Champion

Details are unknown, but ...
・・・・|transaction ・・・・|stats max(duration)
OR
・・・・|transaction ・・・・|sort -duration|head 1

View solution in original post

0 Karma

akocak
Contributor

Selected answer correct for if you have one field name, for multiple similarly I use:

|sort - duration
|dedup field_name
0 Karma

HiroshiSatoh
Champion

Details are unknown, but ...
・・・・|transaction ・・・・|stats max(duration)
OR
・・・・|transaction ・・・・|sort -duration|head 1

0 Karma

chhawu
New Member

You are right ! I try to search with second search script to get the longest transaction,but is there any way to show column one "max(duration)" and column two _raw at once?

0 Karma

Richfez
SplunkTrust
SplunkTrust

Instead of doing the ... | head 1, try instead using the limit=<number> parameter of the sort. Then to make it pretty or include other fields, use the table command.

... | transaction ...stuff...  |table duration, _raw  | sort limit=1 - duration 

Give that a shot and see if it works for you.

Happy Splunking!
Rich

chhawu
New Member

Hi Rich

Thanks ! I am going to modify my search script base on your suggestion.

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...