Splunk Enterprise Security

Splunk search on two different indexes and retrieve a matching value from one index

armanih
Explorer

Hi All,

I have two indexes.

Index A | table email_users
Index B | table email, Group

email_users and email fields contain email addresses

I need to match both these index fields and get the value of the field Group for the results.

I tried the below query, but its not working.

index=A or index=B
| rename email_users as email
| stats values(Group) by email

 

Labels (1)
0 Karma

thambisetty
SplunkTrust
SplunkTrust

 

index=A or index=B
| eval new_email=coalesce(email,email_users)
| stats dc(index) as dc_index values(Group) as values_Group by new_email
| where dc_index=2

values_Group is just renaming values(Group).

Run the above query to see matching results. 

————————————
If this helps, give a like below.
0 Karma

thambisetty
SplunkTrust
SplunkTrust

 

index=A or index=B
| eval new_email=coalesce(email,email_users)
| stats values(Group) as values_Group by new_email

 

to return only matched values use below query:

 

index=A or index=B
| eval new_email=coalesce(email,email_users)
| stats dc(index) as dc_index values(Group) as values_Group by new_email
| where dc_index=2

 

————————————
If this helps, give a like below.
0 Karma

armanih
Explorer

Thanks @thambisetty 

Can you please explain what is values_Group in stats command 
" | stats values(Group) as values_Group by new_email " 

The query is not working. I am only getting the list of emails and not the groups. 

thanks

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.


Introducing Unified TDIR with the New Enterprise Security 8.2

Read the blog

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...