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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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