Splunk Search

Timechart: How to show "0"when no results found

kryzew
Explorer

Hello,

I'm try go get "0" in my result when there is no events. I get only "no result found".

index=*mysearch
| timechart count as count
| accum count as count


Any idea?


Labels (1)
0 Karma
1 Solution

rafamss
Contributor
0 Karma

kryzew
Explorer

First solution work for me fine, thank you both for your help.

BR

0 Karma

rafamss
Contributor

Hey,

Did you see this topic: https://community.splunk.com/t5/Splunk-Search/Timecharts-and-how-to-avoid-quot-no-results-found-insp...
They resolved the same problem that you are facing.

0 Karma

tonyread
Observer
| makeresults 1 
| timechart count span=1m 
| eval flag=1 
| append 
    [ search index=doesnotexist 
    | timechart count span=1m] 
| timechart sum(eval(flag!=1)) as count 
| fillnull count

 

Not the most elegant but this might do what you're looking for.  Use the makeresults command to force a single result, which you can then do a timecount on, and append that with your actual search (index=*mysearch).  If that now returns 0 results, the first search forces in its results and avoids the "no results found" message.  I've asumed you want span=1m.  You can experiment with this.

Of course, if you just want a single zero as your result, not a table of zeros as in my solution, then that requires a different approach.

0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...