Splunk Search

How do I look for the existence of one field within another field?

rwmilligan
Explorer

For example, if I have a proxy log, and it shows User=A, then In the URL field we have "http://somesite.com/parameter=A", I want it to be able to pull up those logs.

Tags (1)
0 Karma
1 Solution

elliotproebstel
Champion

You can make that comparison by using where like() in this way:

| where like(URL, "%".user."%")

Here's some sample run-anywhere code. Everything before the where like() line is just making a couple of test events:

| makeresults 
| eval user="Alex", URL="http://somesite.com/parameter=Alex" 
| append 
    [| makeresults 
    | eval user="Beth", URL="http://somesite.com/parameter=Baloney"] 
| where like(URL, "%".user."%")

Note that the % are being appended to the start and end of the user field for the comparison, because these are the wildcards for the like function.

View solution in original post

elliotproebstel
Champion

You can make that comparison by using where like() in this way:

| where like(URL, "%".user."%")

Here's some sample run-anywhere code. Everything before the where like() line is just making a couple of test events:

| makeresults 
| eval user="Alex", URL="http://somesite.com/parameter=Alex" 
| append 
    [| makeresults 
    | eval user="Beth", URL="http://somesite.com/parameter=Baloney"] 
| where like(URL, "%".user."%")

Note that the % are being appended to the start and end of the user field for the comparison, because these are the wildcards for the like function.

richgalloway
SplunkTrust
SplunkTrust

Please share some sample events.

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

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...