Splunk Search

How to search a list of URLs and add the response times for URLs with similar patterns?

Karan_Jindal
New Member

Hi,

I have a Splunk search which gives list of URLs and their corresponding response times like:

/webapp/store/p/product1, 1
/webapp/store/p/product2, 2
/webapp/store/p/product3, 1
/webapp/store/l/list1, 1.12
/webapp/store/l/list2, 0.12
/webapp/store/home, 1.12
/webapp/store/page4, 1.12
/webapp/store/page5, 1.12

Now, I want to do a pattern search on these urls and want to add the response times of similar patterned urls.

Desired output:

/webapp/store/p/, 4
/webapp/store/l/, 1.24
/webapp/store/home, 1.12
/webapp/store/page4, 1.12
/webapp/store/page5, 1.12

Any help would be appreciated.

Thanks

Tags (4)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

This should get you started:

... | rex field=URL "(<?PbaseURL>\/\w+\/\w+\/\w+)" | stats sum(time) as totalTime by baseURL | table baseURL totalTime
---
If this reply helps you, Karma would be appreciated.
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Try this:

base search | rex field=url "^(?<pattern>/[^/]+/[^/]+/[^/]+/?)" | stats sum(response_time) by pattern
0 Karma
Get Updates on the Splunk Community!

Accelerating Observability as Code with the Splunk AI Assistant

We’ve seen in previous posts what Observability as Code (OaC) is and how it’s now essential for managing ...

Integrating Splunk Search API and Quarto to Create Reproducible Investigation ...

 Splunk is More Than Just the Web Console For Digital Forensics and Incident Response (DFIR) practitioners, ...

Congratulations to the 2025-2026 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...