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!

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

🍂 Fall into November with a fresh lineup of Community Office Hours, Tech Talks, and Webinars we’ve ...

Transform your security operations with Splunk Enterprise Security

Hi Splunk Community, Splunk Platform has set a great foundation for your security operations. With the ...

Splunk Admins and App Developers | Earn a $35 gift card!

Splunk, in collaboration with ESG (Enterprise Strategy Group) by TechTarget, is excited to announce a ...