Splunk Search

How to count all the count results on multiple searches and display it in a line graph if it has to be shown hourly?

sgarine8925
Engager

For the following search

sourcetype=abc_access OR sourcetype=xyz_soa_access host="*12546abc*p*" source="*access_log*" "ABCProcess" | stats count | RENAME count as ABCOrders| appendcols [search
source="*access*log*" ReceiptService host="ghjsms" | stats count | RENAME count as ReceiptService] | appendcols [search
sourcetype=abc_access OR sourcetype=xyz_soa_access host="*12546abc*p*" source="*access_log*" "ProcessOrders" | stats count | RENAME count as ProcessOrders]

I would like to know
1. How to count all the count results on multiple searches? 2. How to present it in a line graph if it has to be shown on hourly?

Tags (3)
0 Karma
1 Solution

sundareshr
Legend

Here's one way. You may not need multiple searches. You should be able to combine all three into one like this.. Give it a try

sourcetype=abc_access OR sourcetype=xyz_soa_access host="*12546abc*p*" OR host="ghjsms" OR host="*12546abc*p*" source="*access_log*" "ABCProcess"  OR ReceiptService  OR "ProcessOrders" | rex "(?<category>ABCProcess|ReceiptService|ProcessOrders") | timechart span=1h count by category

View solution in original post

sundareshr
Legend

Here's one way. You may not need multiple searches. You should be able to combine all three into one like this.. Give it a try

sourcetype=abc_access OR sourcetype=xyz_soa_access host="*12546abc*p*" OR host="ghjsms" OR host="*12546abc*p*" source="*access_log*" "ABCProcess"  OR ReceiptService  OR "ProcessOrders" | rex "(?<category>ABCProcess|ReceiptService|ProcessOrders") | timechart span=1h count by category
Get Updates on the Splunk Community!

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...

Data Management Digest – November 2025

  Welcome to the inaugural edition of Data Management Digest! As your trusted partner in data innovation, the ...