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!

The Payment Operations Wake-Up Call: Why Financial Institutions Can't Afford ...

The same scenario plays out across financial institutions daily. A payment system fails at 11:30 AM on a busy ...

Make Your Case: A Ready-to-Send Letter for Getting Approval to Attend .conf25

Hello Splunkers, Want to attend .conf25 in Boston this year but not sure how to convince your manager? We've ...

Community Spotlight: A Splunk Expert's Journey

In the world of data analytics, some journeys leave a lasting impact not only on the individual but on the ...