Splunk Search

How do you do disjunction of two sets in join condition

arungeorge09
Path Finder

I have a common field and 2 joins and want to work on the data which does not fall in the join condition.

Tags (1)
0 Karma

somesoni2
Revered Legend

Have a look at Splunk's "set" command with diff option.
http://docs.splunk.com/Documentation/Splunk/6.1.2/SearchReference/Set

An example syntax would be

| set diff [Your first search  | table commonField] [Your second search  | table commonField] 
0 Karma

arungeorge09
Path Finder

Can someone please answer . I am looking for a minus query.

0 Karma

arungeorge09
Path Finder

I have 2 searches with a join condition txId . But I know that the second subsearch does not have same items. I want it as raw events. I tried the following

index=xyz event="NEAT-IN" platform=apns | eval txId=alertId |join txId [search index=xyz event=pushApns] | where isnull(txId)

Why this does not work. I got 0 events. This is not correct. There are less events in second subsearch based on stats.

I have a dashboard to prepare and really appreciate the help.

0 Karma

somesoni2
Revered Legend

By default, output of the join command is "inner join" and thus its just returning (if any) matching rows. So you'll not get any events with the isnull filter.

Try this to get all the non-matching rows from First search.

index=xyz event="NEAT-IN" platform=apns | eval txId=alertId |join type=left txId [search index=xyz event=pushApns] | where isnull(txId)
0 Karma

arungeorge09
Path Finder

@somesoni2 . The query works but it gives me zero results.
I have 578 distinct count(alertId) in first search
I have 488 distinct count(txId) in second search

I still don't understand why I will get 0 results.

Note: It should be isnull(alertId) because alertId is on the right table.

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

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 ...