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!

Index This | What is broken 80% of the time by February?

December 2025 Edition   Hayyy Splunk Education Enthusiasts and the Eternally Curious!    We’re back with this ...

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...

Splunk MCP & Agentic AI: Machine Data Without Limits

Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization uses ...