Splunk Search

How to search Splunk indexes' event count for the last one hour including zero counts?

dhavamanis
Builder

Can you please tell us how to check Splunk indexes' event count for last one hour including zero counts? For a specific index, the search below works fine. If we want results for multiple indexes, how do we write the search?

Search working fine with one index and zero count

index="idx1" earliest=-1h | stats count  | where count=0 

Search not working with multiple indexes to include zero count:

index="idx1" OR index="idx2" OR "idx3" earliest=-1h | stats count by index | where count=0 

Need a output like:

index count
------------
idx1    0
idx3    0
Tags (3)
1 Solution

HiroshiSatoh
Champion

The What about with this?

index="idx*" earliest=-1h | stats count by index |
append [| eventcount summarize=false index="idx*"|stats count by index|eval count=0|table index,count]|
stats sum(count) as count by index
| where count=0

View solution in original post

HiroshiSatoh
Champion

The What about with this?

index="idx*" earliest=-1h | stats count by index |
append [| eventcount summarize=false index="idx*"|stats count by index|eval count=0|table index,count]|
stats sum(count) as count by index
| where count=0
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...