Splunk Search

Grouping transactions with respect to duration

gpanicker
Explorer

I am looking for a query to group a set of transactions with respect to their duration. The output should be like this.

Duration Count


0-1 200
1-2 50
2-3 10

etc..

Tags (2)
0 Karma
1 Solution

dwaddle
SplunkTrust
SplunkTrust

As Yann was mentioning, once you have the duration value from transaction you can use rangemap to do something like this:

... | rangemap field=duration 0-10=0-10 11-100=11-100 100-500=100-500 default=500+ 
| stats count by range

View solution in original post

dwaddle
SplunkTrust
SplunkTrust

As Yann was mentioning, once you have the duration value from transaction you can use rangemap to do something like this:

... | rangemap field=duration 0-10=0-10 11-100=11-100 100-500=100-500 default=500+ 
| stats count by range

gpanicker
Explorer

Thanks! I get some overlapping ranges and it gets displayed as

Range Count
2-3 3-4 78
4-5 3-4 98

Is there any way to get the overlapped duration value assigned to a unique range.
for eg , duration of 2 should show up in 2-3 range and not in 1-2.

0 Karma

yannK
Splunk Employee
Splunk Employee

If you use the transaction function, the duration field exists.
So you have to redefine ranges with a new field like "durationrange" (see eval functions or rangemap)
http://docs.splunk.com/Documentation/Splunk/4.3.2/SearchReference/Rangemap

Finally use "| sort -durationrange" at the end of the search.

gpanicker
Explorer

Thanks! Is there any way to deal with the overlapped values.More details in the comment below...

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...