Splunk Search

How to check value of my search present in which lookup table

akshayinnamuri
Loves-to-Learn Lots

Hi

I am looking for query where say for example user=xyz which is present in multiple watchlists [watchlist_A.csv, watchlist_B.csv, watchlist_C.csv, watchlist_D.csv] and not present in watchlist_E.csv, watchlist_F.csv

watchlist have columns
[ number, user, date ]

     1, xyz, 01022000

      2, abc, 02022000

 


I am looking for query to use multiple watchlist and find value of my search say user=abc when queried should show a table as below 

user, watchlistNames

If result is present in multiple table it should give me the watclistnames

where my search is user=abc and is present in watchlist_A.csv, watchlist_B.csv, watchlist_C.csv, watchlist_D.csv

so my query result should be

user, Watchlistnames

abc,watchlist_A.csv, watchlist_B.csv, watchlist_C.csv, watchlist_D.csv

Labels (4)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @akshayinnamuri,

please try something like this:

<your_search>
| lookup watchlist_A.csv user OUTPUT number AS number_watchlist_A.csv
| lookup watchlist_B.csv user OUTPUT number AS number_watchlist_B.csv
| lookup watchlist_C.csv user OUTPUT number AS number_watchlist_C.csv
| lookup watchlist_D.csv user OUTPUT number AS number_watchlist_D.csv
| table user number_watchlist_A.csv number_watchlist_B.csv number_watchlist_C.csv number_watchlist_D.csv

Then, if you likem you can also put a status message (using eval) to indicate if some lookup is missing.

Ciao.

giuseppe

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...