Splunk Search

How to create a table on windowed count of api response time?

anonym3421
Engager

I have some api response logs separated by pipe. However there is already field extraction on api response time. the field value is something like "100 ms". I want to create a table on windowed count of api response time. 

The final table I want to create is some thing like

responseTime                     count

5 ms.                    {count where responseTime <= 5ms}

10 ms                    {count where responseTime <= 10ms but >5ms}

 

I can create a simple count table by " base search | stats count by responseTime" which results like

responseTime               count

1 ms                                    100

2 ms                                     30

 

How can I create this windowed stats?

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Assuming responseTime is already measured in milliseconds:

base search 
| bin responseTime span=5s
| stats count by responseTime

The s is important otherwise you get a range of values.

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Assuming responseTime is already measured in milliseconds:

base search 
| bin responseTime span=5s
| stats count by responseTime

The s is important otherwise you get a range of values.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...