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!

Stay Connected: Your Guide to July Tech Talks, Office Hours, and Webinars!

What are Community Office Hours?Community Office Hours is an interactive 60-minute Zoom series where ...

Updated Data Type Articles, Anniversary Celebrations, and More on Splunk Lantern

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

A Prelude to .conf25: Your Guide to Splunk University

Heading to Boston this September for .conf25? Get a jumpstart by arriving a few days early for Splunk ...