Splunk Search

How to exclude page resources in the search results

xvxt006
Contributor

Hi, i am using the below search query to get uri commands from the access logs. But result includes page resources as well (js, imgs, css etc). I want to exclude these. How can i do that?

Basically i want to exclude any uri which ends with (.js, .css, .img, etc). How can i add that condition to the below query?

sourcetype=access_combined_wcookie host=qalws* LR_VPT_HYBRIS | rex field=uri "/(?P.*?)[?/\"]" | top limit=5000 command

Tags (1)
0 Karma
1 Solution

jonuwz
Influencer

Example to exclude js and css files

index=_* sourcetype="splunk_web_access" NOT ( uri=*.js OR uri=*.css) | table uri

So you should be good to just modify your main search as follows :

sourcetype=access_combined_wcookie host=qalws LR_VPT_HYBRIS NOT (uri=*.js OR uri=*.css OR uri=*.img)

View solution in original post

jonuwz
Influencer

No problem - feel free to accept the answer if it worked for you

0 Karma

xvxt006
Contributor

Awesome. Thank you both. it is working fine. I was doing uri!= and it did not give me proper results. Thanks for your help.

0 Karma

jonuwz
Influencer

Example to exclude js and css files

index=_* sourcetype="splunk_web_access" NOT ( uri=*.js OR uri=*.css) | table uri

So you should be good to just modify your main search as follows :

sourcetype=access_combined_wcookie host=qalws LR_VPT_HYBRIS NOT (uri=*.js OR uri=*.css OR uri=*.img)
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...