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!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...