Splunk Search

Need a Help with Query

satyaallaparthi
Communicator

I have two lookups, 1 with 460K rows and another with 10K rows. 

I used join to get the 10K results from 460K rows, however join is not working and not returning any results. 

I used table and stats in both lookups though no results. 

 

Below is the query I used: 

| inputlookup unix.csv
| eval sys_name = lower(FQDN)
| join sys_name
[| inputlookup inventory.csv
| eval sys_name = lower("*".sys_name."*")
| table Status sys_name host-ip  "DNS Name"  ]



| inputlookup unix.csv
| eval sys_name = lower(FQDN)
|stats values(*) as * by sys_name
| join sys_name
[| inputlookup inventory.csv
| eval sys_name = lower("*".sys_name."*")
| table Status sys_name host-ip  "DNS Name"  ]

Any help would be greatly appreciated. 

Labels (2)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @satyaallaparthi,

whats the result you're waiting for?

do you want to filter the first lookup using the second?

in this case try this:

| inputlookup unix.csv
| eval sys_name = lower(FQDN)
| search [ 
   | inputlookup inventory.csv
   | eval sys_name = lower("*".sys_name."*")
   | fields sys_name ]
| table Status sys_name host-ip  "DNS Name" 

If instead you want to take values between both the lookups, yu can use the lookup command (https://docs.splunk.com/Documentation/SCS/current/SearchReference/LookupCommandOverview) in this way:

| inputlookup unix.csv
| eval sys_name = lower(FQDN)
| lookup inventory.csv sys_name
| table Status sys_name host-ip  "DNS Name" 

My only doubt is that in the two lookups the sys_name has different format.

In this case, my hint is to elaborate the lookup to have another lookup with the correct sys_name.

Ciao.

Giuseppe

satyaallaparthi
Communicator

Great! The 'search' function worked as intended, instead of 'join'.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @satyaallaparthi ,

good for you, see next time!

let me know if I can help you more, or, please, accept one answer for the other people of Community.

Ciao and happy splunking

Giuseppe

P.S.: Karma Points are appreciated 😉

0 Karma
Get Updates on the Splunk Community!

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...

Data Management Digest – November 2025

  Welcome to the inaugural edition of Data Management Digest! As your trusted partner in data innovation, the ...