Splunk Search

How to join multiple sources with common fields and display stats using fields from both tables

Valisha2005
New Member

Hello, I'm new to splunk. I would like to know how to join several sources and have the results stats displayed from both sources. In the example below I want to see the top 30 orders by url link. The orders is in one source(x) and the url link is another(y) both sources share a common url id.

  1. index = main (sourcetype= skeletor_rails OR sourcetype = deal_catalog_rails) commonField= deal_uuid
  2. | eventstats dc(order_id) as "totalCount" | stats count, sum(totalCount) as total_orders by permalink
Tags (3)
0 Karma
1 Solution

MuS
Legend

Hi Valisha2005,

based on the generic example you provided, you can use something like this:

source=x OR source=y
| stats count values(*) AS * by url_id
| sort - count 
| head limit=30

Read this answer https://answers.splunk.com/answers/129424/how-to-compare-fields-over-multiple-sourcetypes-without-jo... to learn more about this topic.

Hope this helps ...

cheers, MuS

View solution in original post

MuS
Legend

Hi Valisha2005,

based on the generic example you provided, you can use something like this:

source=x OR source=y
| stats count values(*) AS * by url_id
| sort - count 
| head limit=30

Read this answer https://answers.splunk.com/answers/129424/how-to-compare-fields-over-multiple-sourcetypes-without-jo... to learn more about this topic.

Hope this helps ...

cheers, MuS

Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...