Splunk Enterprise

For single value panel need to replace 'no results found' message with custom data

kirrusk
Communicator

Hi,

I tried the below logic, to replace the "no results found "message with a custom message.
But after adding append count the,  at end of the query.
logic is not working as expected. Can anyone please help?

base search | fields version, time  | appendpipe [stats count | where count=0]
<done>
    <condition match=" 'job.resultCount' == 0">
        <set token="show_html">true</set>
    </condition>
    <condition>
        <unset token="show_html"/>
    </condition>
<done>
<chart rejects="$show_html$">
   ...
</chart>
<html depends="$show_token$">
     <div style="font-weight:bold;font-size:150%;text-align:center;color:red">
          No data, Please check later
     </div>
</html>

 

Labels (2)
Tags (4)
0 Karma

efavreau
Motivator

@kirruskDid you get a zero at the end of your query? Or are you still trying to do that?
If you do have a "0" at the end of your query, then it is as easy as modifying your last line to

 

| appendpipe 
    [ stats count 
    | where count=0 
    | eval count="No data, Please check later"]

I tested this and it will display in a single value viz. So you won't need any of the custom xml, because the logic is in the query itself.

 

###

If this reply helps you, an upvote would be appreciated.
0 Karma

kirrusk
Communicator

@efavreau Thank you, but it is not exactly what I'm looking for. I'm using the hyper link. So if there is no data also hyperlink is still enabled on custom message, which should not.

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