Splunk Search

splunk dashboard

Siddharthnegi
Contributor

I want to show  a custom message when the panel shows count=0 , which means search is not giving any results but in future might give.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Siddharthnegi ,

as I said in my answers to you previous question, if you install the Splunk Dashboard Example app ( https://splunkbase.splunk.com/app/1603 ), you'll find the example "Null Search Swapper, that describes how to replace a panel with a message when no results, that's exacly the feature you need.

In the example there's the code to use in the dashboard, that you need only to customize for your searches and panels.

What's the issue?

Ciao.

Giuseppe

0 Karma

bowesmana
SplunkTrust
SplunkTrust

Use this type of technique, so you set a token if there are results and the panel showing the table will display (depends=) and the panel showing the message will not display (rejects=)

<table depends="$has_results$">
  <search>
    <query>
Your search
    </query>
  </search>
  <done>
    eval token="has_results">if($job.resultCount$&gt;0, 1, null())</eval>
  </done>
</table>
<html rejects="$has_results$">
  <h1>There are no results</h1>
</html>

 

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...