Splunk Search

Search query for count of max response time of pages greater than xx

subhadipc
Explorer

I have a search query that reads as follows:

.....| eval time_sec = round(time_taken/1000)
| chart max(time_sec) as max_response_time by cs_uri_stem
| where max_response_time > xx

where .... gives a list of pages and sources, and xx is the time in figures. The search is programmed to take the last 7 day data (i.e., uses -7d).

The output gives the pages where the max_response_time is greater than xx. It does not state how many times did the max_response_time cross xx. How can I tune the search query so that it gives me a count of how many times did the max response time of the page cross xx. Please note, the output should only list the pages whose max response time crossed xx at least once, and the remaining pages be ignored.

Tags (2)
0 Karma

Damien_Dallimor
Ultra Champion

Try something like :

...| eval time_sec = round(time_taken/1000) | where time_sec > xx | stats count by cs_uri_stem
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...