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!

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...