Splunk Search

Filter Email Address Country of Origin Using Lookup

griffins
Explorer

Assume I have a simple search that lists in a table the email addresses of those who recently sent an email:

index=email | table sender

 The email index does not have a field that identifies the country the sender address is from; however, it is known that the listed sender addresses are from many different countries. If I have a lookup that contains all the email addresses located in the US using the format:

email country
address1@mail.com US
address2@mail.com US
...

 How can I filter my search results to only contain sender email addresses from those located in the US (based off of the lookup), while also adding a field to the table that shows US?

Labels (1)
0 Karma
1 Solution

anilchaithu
Builder

@griffins 

you can use something simple like this

 

index=email | table sender | lookup lookup_name email as sender output country | dedup country

 

OR you can try with subsearch. Since the query only searches the senders from the lookup you can add country as US

 

index=email [ | inputlookup lookup_name | rename email as sender | table sender | format] | eval country="US" | table sender country 

 

 

Hope this helps 

View solution in original post

anilchaithu
Builder

@griffins 

you can use something simple like this

 

index=email | table sender | lookup lookup_name email as sender output country | dedup country

 

OR you can try with subsearch. Since the query only searches the senders from the lookup you can add country as US

 

index=email [ | inputlookup lookup_name | rename email as sender | table sender | format] | eval country="US" | table sender country 

 

 

Hope this helps 

griffins
Explorer

@anilchaithu This works great! Thank you so much.

0 Karma
Get Updates on the Splunk Community!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

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

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...