Splunk Search

Compare search field to multiple lookup fields

user2020dy
Path Finder

I have field src_ip in my data.

 

My lookup fields: ip1,  ip2,  ip3, ip4,  user

 

What I want is to find matching pairs in  src_ip and ip1,  ip2,  ip3, ip4 and OUTPUT the name of user, who this src_ip belongs to.

 

How can I do this?

Labels (5)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

You'll need to use multiple lookups to do that.

 

... | lookup ip1 as src_ip output user
| lookup ip2 as src_ip outputnew user
| lookup ip3 as src_ip outputnew user
| lookup ip4 as src_ip outputnew user
...

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

You'll need to use multiple lookups to do that.

 

... | lookup ip1 as src_ip output user
| lookup ip2 as src_ip outputnew user
| lookup ip3 as src_ip outputnew user
| lookup ip4 as src_ip outputnew user
...

 

---
If this reply helps you, Karma would be appreciated.
0 Karma

user2020dy
Path Finder

I know this works, but can`t I do this within one command?

It is stated in documentation that multiple fields can be included in the list.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Yes, the lookup command supports multiple fields, but all of the fields are ANDd during the lookup.  The only way to do an OR is via multiple lookups.

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

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 ...

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...