Splunk Search

How to combine two splunk searches based on a common field and display as single chart or table?

vdalvi
Explorer

HI,

I have two searches per below

index=* host=* source=*
| eval TopicName=split(topicName,".")
| chart sum(size) as Todays_Count over TopicName | sort Todays_Count
| append
[
index=* host=* source=*
| stats count by propertiesTopicName, expectedCount | table propertiesTopicName expectedCount | sort expectedCount
]

Here I am using append which basically appends the result of 2nd search below the first search. I am looking to have it displayed besides one another based on the common field values of "TopicName" and "propertiesTopicName"

Basically end result I want is 3 columns being

propertiesTopicName | Todays_Count | expectedCount

How can I achieve this ? Please help 🙂

Labels (4)
1 Solution

bowesmana
SplunkTrust
SplunkTrust

It's unclear to me if propertiesTopicName and the multi valued split results from topicName are the same. If so, then why are you not using propertiesTopicName in the first search?

Anyway, the simple answer to what you look like you're trying to do is

index=* host=* source=*
| eval TopicName=split(topicName,".")
| chart sum(size) as Todays_Count over TopicName 
| rename TopicName as propertiesTopicName
| append
[
  index=* host=* source=*
  | stats count by propertiesTopicName, expectedCount 
  | table propertiesTopicName expectedCount 
]
| stats values(*) as * by propertiesTopicName
| sort Todays_Count expectedCount

You will need to resolve how you want the results to be sorted at the end.

But I suspect there is a simpler solution, but would need to understand what your data looks like.

 

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

It's unclear to me if propertiesTopicName and the multi valued split results from topicName are the same. If so, then why are you not using propertiesTopicName in the first search?

Anyway, the simple answer to what you look like you're trying to do is

index=* host=* source=*
| eval TopicName=split(topicName,".")
| chart sum(size) as Todays_Count over TopicName 
| rename TopicName as propertiesTopicName
| append
[
  index=* host=* source=*
  | stats count by propertiesTopicName, expectedCount 
  | table propertiesTopicName expectedCount 
]
| stats values(*) as * by propertiesTopicName
| sort Todays_Count expectedCount

You will need to resolve how you want the results to be sorted at the end.

But I suspect there is a simpler solution, but would need to understand what your data looks like.

 

vdalvi
Explorer

Thank you! this is exactly what I was looking for 🙂

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Take Action Automatically on Splunk Alerts with Red Hat Ansible Automation Platform

 Are you ready to revolutionize your IT operations? As digital transformation accelerates, the demand for ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...

Beyond Detection: How Splunk and Cisco Integrated Security Platforms Transform ...

Financial services organizations face an impossible equation: maintain 99.9% uptime for mission-critical ...