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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...