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!

Your Feedback. Our Roadmap. Visit the PX Feedback Booth at .conf26

You use Splunk every day, come and help shape what's next.  Save Your Seat: Product-Focused Sessions at ...

Agentic SOC Triage: Investigating Splunk ES Notables with MCP Server and a Local LLM

The Problem: Too Many Alerts, Too Little Context Security operations teams running Splunk Enterprise Security ...

Painting a Clearer Picture: Creating Cross-Domain Visibility with AI Canvas

Watch Now Painting a Clearer Picture: Creating Cross-Domain Visibility with AI Canvas     Do you ever feel ...