Splunk Search

Filtering fields using a common field in two different sourcetypes

infotork
Explorer

fields in sourcetype1 --> A,B,C, txid ( always has a value)

fields in sourcetype2--> D,E,F, txid ( may occur value for some sources or may not)

Its clear that i have a common field ( txid) in two different sourcetypes  sourcetype1 and sourcetype2

Requirement:

I need to print  A,B from sourcetype1, in case i didnt find "txid" in  sourcetype2,  

Please help

Labels (5)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

How about

sourcetype=sourcetype1 OR sourcetype=sourcetype2
| stats values(A) as A values(B) as B values(sourcetype) as types by txid
| where mvcount(types)==1 AND isnull(mvfind(types,"sourcetype2"))
| table A B txid

 

0 Karma
Get Updates on the Splunk Community!

Data Preparation Made Easy: SPL2 for Edge Processor

By now, you may have heard the exciting news that Edge Processor, the easy-to-use Splunk data preparation tool ...

Introducing Edge Processor: Next Gen Data Transformation

We get it - not only can it take a lot of time, money and resources to get data into Splunk, but it also takes ...

Tips & Tricks When Using Ingest Actions

Tune in to learn about:Large scale architecture when using Ingest ActionsRegEx performance considerations ...