<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Change blank dashboard studio panel message in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642544#M52477</link>
    <description>&lt;P&gt;This does partially solve my problem, it outputs a message in the table or visual. I wanted to display an error message to be more exact and bigger with nothing else in the panel when no results are returned. Is there something in the JSON source code I can add to make this happen?&lt;/P&gt;</description>
    <pubDate>Mon, 08 May 2023 14:56:53 GMT</pubDate>
    <dc:creator>cybernete33</dc:creator>
    <dc:date>2023-05-08T14:56:53Z</dc:date>
    <item>
      <title>How can I change blank dashboard studio panel message?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642031#M52435</link>
      <description>&lt;P&gt;On occasion my panels on my dashboard studio are blank. When I hover over the bottom right the message is "Search ran successfully, but no results were returned". I understand that but to make the panels more visually appealing I want to put that message or a different message in the middle of the panel so the user better understands what is going on. Any way to edit this through the JSON source code?&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 19:05:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642031#M52435</guid>
      <dc:creator>cybernete33</dc:creator>
      <dc:date>2023-05-02T19:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change blank dashboard studio panel message</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642042#M52440</link>
      <description>&lt;P&gt;Add an &lt;FONT face="courier new,courier"&gt;appendpipe&lt;/FONT&gt; command to the panel's search query.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;&amp;lt;your query&amp;gt;&amp;gt;
| appendpipe [ stats count | eval message="Nothing to see here" | where count=0 | fields - count ]
| &amp;lt;&amp;lt;table or stats command, etc.&amp;gt;&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;The exact placement and content of the &lt;FONT face="courier new,courier"&gt;appendpipe&lt;/FONT&gt; depends on your query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 17:28:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642042#M52440</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-05-02T17:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Change blank dashboard studio panel message</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642049#M52442</link>
      <description>&lt;P&gt;Most of my panels start with a tstats. Would this work with a query that starts with tstats count?&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 18:00:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642049#M52442</guid>
      <dc:creator>cybernete33</dc:creator>
      <dc:date>2023-05-02T18:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change blank dashboard studio panel message</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642058#M52443</link>
      <description>&lt;P&gt;Yes, &lt;FONT face="courier new,courier"&gt;appendpipe&lt;/FONT&gt; can work with &lt;FONT face="courier new,courier"&gt;tstats&lt;/FONT&gt;.&amp;nbsp; Use caution, however, with field names in &lt;FONT face="courier new,courier"&gt;appendpipe's&lt;/FONT&gt; subsearch.&amp;nbsp; If the main search already has a 'count' field then use a different name in the subsearch.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats count where ...
| appendpipe [ stats count as Count | eval message="Nothing to see here" | where Count=0 | fields - Count ]
| &amp;lt;&amp;lt;table or stats command, etc.&amp;gt;&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 19:18:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642058#M52443</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-05-02T19:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Change blank dashboard studio panel message</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642544#M52477</link>
      <description>&lt;P&gt;This does partially solve my problem, it outputs a message in the table or visual. I wanted to display an error message to be more exact and bigger with nothing else in the panel when no results are returned. Is there something in the JSON source code I can add to make this happen?&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 14:56:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-change-blank-dashboard-studio-panel-message/m-p/642544#M52477</guid>
      <dc:creator>cybernete33</dc:creator>
      <dc:date>2023-05-08T14:56:53Z</dc:date>
    </item>
  </channel>
</rss>

