Getting Data In

Combining different sourcetypes with no common field ( except _time)

ISP8055
Path Finder

Hi, I have one sourcetypeA which has following fields

Cluster1UsageA
A10
B15

and so on

then I have one sourcetypeB which has fields:

Cluster 2Usage B
C5
D20


I want to make a Splunk syntax so that I combine both sourcetypes to see top 3 usage in total among all clusters.
so like this:

ClusterUsage
D20
B15
A10



So, neither Cluster 2, cluster 1 nor usage A  and Usage B are common fields.
Is this possible to do?

Labels (1)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@ISP8055 

Can you please try this?

index=your_index (sourcetype="sourcetypeA" OR sourcetype="sourcetypeB")
| eval Cluster=if(isnotnull(Cluster1),Cluster1,Cluster2)
| eval Usage=if(isnotnull(UsageA),UsageA,UsageB)
| fields Cluster Usage
| sort - Usage | head 3

 

My Sample Search :

| makeresults | eval _raw="Cluster1	UsageA
A	10
B	15" | multikv forceheader=1 | append [
| makeresults | eval _raw="Cluster2	UsageB
C	5
D	20" | multikv forceheader=1 ]
| eval Cluster=if(isnotnull(Cluster1),Cluster1,Cluster2)
| eval Usage=if(isnotnull(UsageA),UsageA,UsageB)
| fields Cluster Usage
| sort - Usage | head 3

 

Thanks
KV
▄︻̷̿┻̿═━一

If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Splunk App Dev Quarterly Roundup: AI, Agents, and Innovation!

Another quarter, another wave of innovation. From complex integrations to pushing the limits ...

Federated Search for Dynamic Data Self Storage Is Now Generally Available on Splunk ...

 Splunk is excited to announce the General Availability of Federated Search for Dynamic Data Self Storage ...

Index This | What has many keys but can’t unlock a door?

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