Splunk Search

help me with join condition

sravankaripe
Communicator

alt text

i have two indexes i have Sid common in both

i want to display Sid and Did in a table.
Please help me with join condtion.

Tags (2)
0 Karma
1 Solution

jkat54
SplunkTrust
SplunkTrust
index=index2 sid=* | join type=left sid [search index=index1 sid=* | fields sid ] | table sid did

This assumes index2 has sid & did, and index1 has just sid

Basically mirror your image and follow the docs: http://docs.splunk.com/Documentation/SplunkCloud/6.5.1612/SearchReference/Join

View solution in original post

somesoni2
Revered Legend

How about this? (will keep events with sid common and sid only in index=B, the right outer join)

index=A OR index=B | stats value(did) as did values(index) as indexes by sid | where isnotnull(mvfind(indexes,"B"))

somesoni2
Revered Legend

Is there a common field between those two indexes? If I understand correctly you're trying to get what a SQL right outer join will give, is it correct?

0 Karma

sravankaripe
Communicator

Sid is a common field.
Yes, it is similar like SQL Right join .

0 Karma

jkat54
SplunkTrust
SplunkTrust
index=index2 sid=* | join type=left sid [search index=index1 sid=* | fields sid ] | table sid did

This assumes index2 has sid & did, and index1 has just sid

Basically mirror your image and follow the docs: http://docs.splunk.com/Documentation/SplunkCloud/6.5.1612/SearchReference/Join

sravankaripe
Communicator

index=index2 sid=* | join type=left sid [search index=index1 sid=* ] | table sid did

this is working

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...