All Apps and Add-ons

Subtract results of subquery from main query

raghu0463
Explorer

Hi Wanted to subract the subquery results from main query. i.e

index=main source=/folder/abc.csv  |table customername - [index=main source=/folder/xxx.csv |table name ] 

can this be achievable ? i want to get only the names which are not common from both the files.

Thanks

0 Karma

to4kawa
Ultra Champion
index=main source=/folder/abc.csv OR source=/folder/xxx.csv
| eval name=coalesce(name,customername)  
| eventstats dc(source) as flag by name
| where flag=1 AND source="/folder/abc.csv"
| table name   

Hi, how about this?

0 Karma

raghu0463
Explorer

I apologize, there's small change in my question

0 Karma

skoelpin
SplunkTrust
SplunkTrust

You gotta do it outside of the subsearch like such.

search abc.csv |table name  [search xxx.csv |table name ]
| eval new_field=name_one-name_two
0 Karma

raghu0463
Explorer

hi skoelpin,
im getting the below error

" 'table' command: Invalid argument: 'name=swbsubwg361'"

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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