Splunk Search

stats min(count) not 0 if value never occurs

viggor
Path Finder

If I have the following query

foo
| timechart span=60s  count 
| stats min(count) as minCntFoo

but foo never occurs, is there a way of setting minCntFoo=0 instead of now, where I get "No results found."?

0 Karma

cmerriman
Super Champion

try this:

foo
 | timechart span=60s  count 
 | stats min(count) as minCntFoo
| appendpipe [ stats count | eval minCntFoo=0 | where count==0 |table minCntFoo]

the appendpipe stats command will count the number of events that come back and only bring back results if there are 0 events from the base query.

Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...