<?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: Red Error/Warning Bar in Splunk in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70714#M3807</link>
    <description>&lt;P&gt;i am unable to remove yellow warning error coming out of splunk enterprise dashboard&lt;/P&gt;</description>
    <pubDate>Wed, 04 Dec 2019 16:40:28 GMT</pubDate>
    <dc:creator>shashank20</dc:creator>
    <dc:date>2019-12-04T16:40:28Z</dc:date>
    <item>
      <title>Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70706#M3799</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;

&lt;P&gt;How can I remove/hide the red error bar which is displayed across the Splunk UI whenever an error occurs?&lt;/P&gt;

&lt;P&gt;Thanks in advance for your help&lt;/P&gt;</description>
      <pubDate>Fri, 15 Oct 2010 00:01:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70706#M3799</guid>
      <dc:creator>Ant1D</dc:creator>
      <dc:date>2010-10-15T00:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70707#M3800</link>
      <description>&lt;P&gt;You can edit the view and take out the Message module...&lt;/P&gt;

&lt;P&gt;
...
&lt;/P&gt;

&lt;P&gt;While this will remove it, you'll also not receive the messages you might need.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Oct 2010 00:11:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70707#M3800</guid>
      <dc:creator>brettgladys</dc:creator>
      <dc:date>2010-10-15T00:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70708#M3801</link>
      <description>&lt;P&gt;If your view (page) is written using the Simplified XML then there are a couple tricks but they're complicated or hacky or both.    &lt;/P&gt;

&lt;P&gt;However if you're already using the Advanced XML it's quite easy --  navigate to 
&lt;CODE&gt;Manager &amp;gt; User Interface &amp;gt; Views &amp;gt; &amp;lt;your view here&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;you should see some module tags with class="Message". &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module class="Message"&amp;gt;
    ...stuff...
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The 2 at the top are generally the ones that are responsible for displaying errors. 
You can just carefully comment those out.  I don't really recommend this because I find that when people do this, a week or two later they'll be tearing their hair out with something that's not working and it ends up being because they have no way of seeing the error message that would make them slap their forehead... &lt;/P&gt;

&lt;P&gt;So.... if you want to be more fine grained about it,  (and sadly the Message module doesn't have very useful filtering),  but you can follow the technique that the 'discover' app uses.  Download that app from splunkbase, look in &lt;CODE&gt;/appserver/static/application.js&lt;/CODE&gt; for references to &lt;CODE&gt;Splunk.Module.Message&lt;/CODE&gt; and read the comments there.   If you copy that block of javascript into your app you'll be able to do some useful filtering on what actual messages it does and does not display. &lt;/P&gt;

&lt;P&gt;If you're stuck with the simplified XML and/or dont want to muck with application.js you can apply some CSS from &lt;CODE&gt;/application/static/application.css&lt;/CODE&gt; to just suppress the display of the message module entirely:: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;div.Message {
    display:none;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but for the same reason I mention above, I'd only do this if you really really need to.  And you might need to put it back when you're debugging.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Oct 2010 00:12:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70708#M3801</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2010-10-15T00:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70709#M3802</link>
      <description>&lt;P&gt;Thanks Nick. I understand what you are saying. Maybe I will switch it off when I am doing demos of my Splunk instance and then turn it back on when I am doing testing/debugging&lt;/P&gt;</description>
      <pubDate>Tue, 19 Oct 2010 22:03:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70709#M3802</guid>
      <dc:creator>Ant1D</dc:creator>
      <dc:date>2010-10-19T22:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70710#M3803</link>
      <description>&lt;P&gt;The error message bar doesn't usually contain much helpful information&lt;/P&gt;</description>
      <pubDate>Tue, 19 Oct 2010 22:05:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70710#M3803</guid>
      <dc:creator>Ant1D</dc:creator>
      <dc:date>2010-10-19T22:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70711#M3804</link>
      <description>&lt;P&gt;Thanks for the info brettgladys&lt;/P&gt;</description>
      <pubDate>Tue, 19 Oct 2010 22:09:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70711#M3804</guid>
      <dc:creator>Ant1D</dc:creator>
      <dc:date>2010-10-19T22:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70712#M3805</link>
      <description>&lt;P&gt;It will display search language errors though, like if you're not using quite the right argument and the report isnt working - that's the only clue you'll get.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2010 13:17:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70712#M3805</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2010-10-21T13:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70713#M3806</link>
      <description>&lt;P&gt;Hey All,&lt;/P&gt;

&lt;P&gt;Within spunk 6.2.2, Is the Messages facility (menu bar) better controllable? Turn it off or filter out system vs user related messages for display etc.&lt;BR /&gt;
I see reference in scripts (under templates/lib.html) like:&lt;/P&gt;

&lt;P&gt;if 'common.min.js' not in seen:&lt;BR /&gt;
                % if disable_messenger:&lt;BR /&gt;
                    &lt;SCRIPT type="text/javascript"&gt;&amp;amp;amp;amp;amp;lt;br&amp;amp;amp;amp;amp;gt;
                        var DISABLE_MESSENGER = true;&amp;amp;amp;amp;amp;lt;br&amp;amp;amp;amp;amp;gt;
                    &lt;/SCRIPT&gt;&lt;BR /&gt;
                % endif&lt;/P&gt;

&lt;P&gt;But not much documentation on how this would work.&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:24:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70713#M3806</guid>
      <dc:creator>baerts</dc:creator>
      <dc:date>2020-09-28T19:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Red Error/Warning Bar in Splunk</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70714#M3807</link>
      <description>&lt;P&gt;i am unable to remove yellow warning error coming out of splunk enterprise dashboard&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 16:40:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Red-Error-Warning-Bar-in-Splunk/m-p/70714#M3807</guid>
      <dc:creator>shashank20</dc:creator>
      <dc:date>2019-12-04T16:40:28Z</dc:date>
    </item>
  </channel>
</rss>

