Splunk Search

lookup Compare value for 2 different Columns

raomu
Explorer

This is my search -

| metadata type=hosts 
| table host 
| lookup Device.csv Hostname as host OUTPUT Status
| where (Status="Active")
| table host 

What I want is to compare either Hostname OR Ip -- lookup Device.csv Hostname OR ip as host OUTPUT status

Tags (2)
0 Karma
1 Solution

pradeepkumarg
Influencer

What you can do is, use the lookup command twice, one for host and one for ip and store it in different values. Then combine and take the non null value from these two fields into a new field


| metadata type=hosts
| table host
| lookup Device.csv Hostname as host OUTPUT Status_host | lookup Device.csv ip as host OUTPUT Status_ip | eval Status=coalesce(Status_host,Status_ip)
| where (Status="Active")
| table host

View solution in original post

pradeepkumarg
Influencer

What you can do is, use the lookup command twice, one for host and one for ip and store it in different values. Then combine and take the non null value from these two fields into a new field


| metadata type=hosts
| table host
| lookup Device.csv Hostname as host OUTPUT Status_host | lookup Device.csv ip as host OUTPUT Status_ip | eval Status=coalesce(Status_host,Status_ip)
| where (Status="Active")
| table host

somesoni2
Revered Legend

Another variation of this could be this

| metadata type=hosts 
| table host 
| lookup Device.csv Hostname as host OUTPUT Status | lookup Device.csv ip as host OUTPUTNEW Status 
| where (Status="Active")
| table host

The OUTPUTNEW in the lookup command will ensure that lookup is done only if first lookup based on Hostname returns no Status.

Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...