Splunk Search

How to handle gracefully "No Results Found"

splunking1t
New Member

Hello,
I've the below query. I wanted to know when there're no errors, instead of showing "No Results Found", how can I show a customized message to the user.
My Query:
index=index sourcetype="sourcetype" SqlTable=* TotalError>0
| chart sum(Errors) as Errors , sum(IfClause) as ClauseErrors by SqlTable

Note: "TotalError" is a calculated field that provides me a sum of "Errors+IfClause". Is there a way to show desired text on output apart from uploading a CSV file?

Tags (1)
0 Karma
1 Solution

niketn
Legend

@splunking1t, get the Splunk Dashboard Examples app from Splunkbase and check out Null Result Swapper example, to show your custom message in case no result is found by the search query.

https://answers.splunk.com/answers/595248/timechart-with-no-data-gives-no-results-found.html

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

@splunking1t, get the Splunk Dashboard Examples app from Splunkbase and check out Null Result Swapper example, to show your custom message in case no result is found by the search query.

https://answers.splunk.com/answers/595248/timechart-with-no-data-gives-no-results-found.html

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

somesoni2
Revered Legend

Another option is using the appendpipe

index=index sourcetype="sourcetype" SqlTable=* TotalError>0
| chart sum(Errors) as Errors , sum(IfClause) as ClauseErrors by SqlTable
| appendpipe [| stats count | where count=0 | eval message="Your Custom Message Here" | table message
| rename COMMENT as "The appendpipe will add a row with your custom message if search above returns nothing(count=0)"  ]
0 Karma

MuS
Legend

Hi splunking1t,

take a look at this answer https://answers.splunk.com/answers/176466/how-to-use-eval-if-there-is-no-result-from-the-bas-1.html where I explain it in detail how this can be done.

Hope this helps ...

cheers, MuS

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 ...