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

Enterprise Security Content Update (ESCU) | New Releases

In the last month, the Splunk Threat Research Team (STRT) has had 2 releases of new security content via the ...

Announcing the 1st Round Champion’s Tribute Winners of the Great Resilience Quest

We are happy to announce the 20 lucky questers who are selected to be the first round of Champion's Tribute ...

We’ve Got Education Validation!

Are you feeling it? All the career-boosting benefits of up-skilling with Splunk? It’s not just a feeling, it's ...