Splunk Search

i want to combine two source types and print the result

lavanyaanne
Path Finder

i have have two sourcetypes say sourcetype1 and sourcetype2 these two source type are in the same index
sourcetype1 has the fields CID and CN
sourcetype2 has the fields CID and Application

if in the two source types the CID matches i want to print the result CN,application
please help me

Tags (1)
0 Karma
1 Solution

sundareshr
Legend

Try this

index=* (sourcetype=st1 OR sourcetype=st2) | stats dc(sourcetype) as count values(CN) as CN values(application) as application by CID | where count=2

View solution in original post

0 Karma

woodcock
Esteemed Legend

Like this:

index=MyIndex (sourctype=sourcetype1 OR sourcetype=sourcetype2)
| stats dc(sourcetype) AS numSourcetypes values(*) AS * by CID
| search numSourcetypes=2
| table CN Application

sundareshr
Legend

Try this

index=* (sourcetype=st1 OR sourcetype=st2) | stats dc(sourcetype) as count values(CN) as CN values(application) as application by CID | where count=2
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...