Splunk Search

How to achieve using Eval equals to a field from lookup?

solaced
Explorer

Need some help. I can't wrap my head around this.

Need to lookup a csv which contains clientip, and compare against my results with IP also in field clientip to show in a new column as matching or not matching 

| index=foo  ....

[|inputlookup IPlist.csv | fields clientip | rename clientip AS knownIP]
| eval isMatching = if(clientip == knownIP, "matching", "notmatch")
| table clientip, field x, field y, field z, isMatching

Am I way off base here? Should I be looking at other commands? I get zero results with this. Without it, my main search runs fine and many events with IPs show.

Much appreciated

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

I am not entirely sure what you are trying to do here

Assuming index foo has a field called clientip and the csv file also has a field called clientip, you can filter your search so that only events from foo with matching ips are kept

index=foo  ... [|inputlookup IPlist.csv | fields clientip]
| table clientip, field x, field y, field z

If you want to keep all events from foo but mark those event with matching client ip, you need to have a field from your csv which is not present in foo, or create one - try something like this

index=foo  ...
| lookup IPlist.csv OUTPUT clientip AS knownIP
| eval isMatching = if(isnotnul(knownIP), "matching", "notmatch")
| table clientip, field x, field y, field z, isMatching

 

View solution in original post

solaced
Explorer

Thank you for your help.  Makes sense and should've been easy enough looking now at the answer. But spent hours myself. Much appreciated!

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

I am not entirely sure what you are trying to do here

Assuming index foo has a field called clientip and the csv file also has a field called clientip, you can filter your search so that only events from foo with matching ips are kept

index=foo  ... [|inputlookup IPlist.csv | fields clientip]
| table clientip, field x, field y, field z

If you want to keep all events from foo but mark those event with matching client ip, you need to have a field from your csv which is not present in foo, or create one - try something like this

index=foo  ...
| lookup IPlist.csv OUTPUT clientip AS knownIP
| eval isMatching = if(isnotnul(knownIP), "matching", "notmatch")
| table clientip, field x, field y, field z, isMatching

 

Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...