Splunk Search

How to search for the exact URI with wildcards within the URI field?

Splunk_SachinKu
New Member

Hi All,

I have following URI in my logs.

/svc/appName/1234567890/catalog/search/(status),
/svc/appName/1234567890/catalog/search/(info)
/svc/appName/1234567890/catalog/search/(update),
/svc/appName/1234567890/catalog/search/

where 1234567890 is user id. I would like to search for /svc/appName//catalog/search/.

I am using following to search
index=jboss sourcetype=jboss_tomcat_access_log /catalog/search/.

But it returns all of the above URIs.

How would I search for the exact URI for all the user ids?

Thank You!

0 Karma

richgalloway
SplunkTrust
SplunkTrust

You're searching for text that appears in all events so you will get all events in your results. To narrow the results, add qualifiers to your search. Is the URI in a field? If so, you can try

index=jboss sourcetype=jboss_tomcat_access_log /catalog/search/ | where like(URI,"%/catalog/search/" | ...

Otherwise, try

index=jboss sourcetype=jboss_tomcat_access_log /catalog/search/ NOT "/catalog/search/(*"

to exclude events that have parens near the end.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...