Splunk Search

How do you compare a field in a search table with a lookup table field?

kdelvillar
Engager

I have a search that produces a table that contains a field called "http_referer", and I want to compare this field against a field called "TargetURL" that's in my inputlookup redirect-url.csv result. If there's a match I would like it to display all the matches.

Tags (1)
0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@kdelvillar

Have you tried lookup command? I'm not able to understand all the matches with!!!??

Can you please try below search?

YOUR_TABLE_SEARCH | lookup redirect-url.csv TargetURL as http_referer OUTPUTNEW TargetURL as myTargetURL | where isnotnull(myTargetURL)

https://docs.splunk.com/Documentation/Splunk/7.2.0/SearchReference/Lookup

View solution in original post

kamlesh_vaghela
SplunkTrust
SplunkTrust

@kdelvillar

Have you tried lookup command? I'm not able to understand all the matches with!!!??

Can you please try below search?

YOUR_TABLE_SEARCH | lookup redirect-url.csv TargetURL as http_referer OUTPUTNEW TargetURL as myTargetURL | where isnotnull(myTargetURL)

https://docs.splunk.com/Documentation/Splunk/7.2.0/SearchReference/Lookup

kdelvillar
Engager

This worked thank you!

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@kdelvillar

Glad to help you. Can you please accept the answer and upvote comment to help the community?

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
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, ...