<?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: How to change a single panel color based on text result with unit format ? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/513120#M143965</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try this run anywhere example and see it fits your use case&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Single Value&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="radio" token="data" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Data&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;With Data&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="0"&amp;gt;Without Data&amp;lt;/choice&amp;gt;
      &amp;lt;initialValue&amp;gt;1&amp;lt;/initialValue&amp;gt;
      &amp;lt;default&amp;gt;1&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;condition match="'result.dummy' ==&amp;amp;quot;false&amp;amp;quot;"&amp;gt;
              &amp;lt;set token="unit"&amp;gt;GB&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;set token="unit"&amp;gt;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
          &amp;lt;query&amp;gt;|makeresults |eval host="host1",FreeSpace=25|eval dummy="false"|where 1=$data$
                  |appendpipe 
                      [| stats count 
                      | eval FreeSpace="No event for this host" 
                      | where count = 0 
                      | eval dummy="true"
                      | table FreeSpace,dummy ]
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorBy"&amp;gt;value&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;block&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0xdc4e41","0xf1813f","0xf8be34","0xdc4e41"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,30,70]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="showSparkline"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendColorInterpretation"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="unit"&amp;gt;$unit$&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;after&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="useThousandSeparators"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 08 Aug 2020 05:29:04 GMT</pubDate>
    <dc:creator>renjith_nair</dc:creator>
    <dc:date>2020-08-08T05:29:04Z</dc:date>
    <item>
      <title>How to change a single panel color based on text result with unit format ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511044#M143131</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;In the search below, I would be able to change the background color following the value of the FreeSpace field&lt;/P&gt;&lt;P&gt;It works if I delete the format of the field&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval FreeSpace=FreeSpace." GB" &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I need to keep it in the search&lt;/P&gt;&lt;P&gt;How to do this please? Is anybody can help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    [| inputlookup host.csv 
    | table host] `diskspace` 
| fields FreeSpaceKB host 
| eval host=upper(host) 
| eval FreeSpace = FreeSpaceKB/1024 
| eval FreeSpace = round(FreeSpace/1024,1) 
| search host=$tok_filterhost$ 
| stats latest(FreeSpace) as FreeSpace by host 
| eval FreeSpace=FreeSpace." GB" 
| table FreeSpace 
| appendpipe 
    [| stats count 
    | eval FreeSpace="No event for this host" 
    | where count = 0 
    | table FreeSpace ]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 06:05:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511044#M143131</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-07-31T06:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511050#M143132</link>
      <description>&lt;P&gt;Are you using the Single Value visualization for your panel?&lt;BR /&gt;&lt;BR /&gt;If so , try removing the eval where you append the GB suffix.&lt;BR /&gt;&lt;BR /&gt;Set the color range in the viz format settings, and add the GB as a suffix in the viz format settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;[| inputlookup host.csv &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| table host] `diskspace` &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| fields FreeSpaceKB host &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| eval host=upper(host) &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| eval FreeSpace = FreeSpaceKB/1024 &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| eval FreeSpace = round(FreeSpace/1024,1) &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| search host=$tok_filterhost$ &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| stats latest(FreeSpace) as FreeSpace by host &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| table FreeSpace &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| appendpipe &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;[| stats count &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| eval FreeSpace="No event for this host" &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| where count = 0 &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;| table FreeSpace ]&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation (1).png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9878i175EBF4C9C8133B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation (1).png" alt="Annotation (1).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation (2).png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9877iD6CA91AB620C63C1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation (2).png" alt="Annotation (2).png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 06:10:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511050#M143132</guid>
      <dc:creator>kmugglet</dc:creator>
      <dc:date>2020-07-27T06:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511051#M143133</link>
      <description>&lt;P&gt;yes I use it&lt;/P&gt;&lt;P&gt;but i dont want to add the GB suffix because if I am doing that I have an issue in the appendpipe command results :&amp;nbsp;&lt;/P&gt;&lt;P&gt;"No event for this host &lt;STRONG&gt;GB&lt;/STRONG&gt;" is displayed instead&amp;nbsp;"No event for this host"&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 06:08:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511051#M143133</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-07-27T06:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511054#M143134</link>
      <description>&lt;P&gt;Ah ok, I see what you mean &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Try this - can't really test myself, but it should work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;[| inputlookup host.csv&lt;BR /&gt;| table host] `diskspace`&lt;BR /&gt;| eval host=upper(host)&lt;BR /&gt;| eval FreeSpace = round(FreeSpaceKB/1024/1024,1)." GB"&lt;BR /&gt;| append [&lt;BR /&gt;&amp;nbsp; &amp;nbsp;| makeresults&lt;BR /&gt;&amp;nbsp; &amp;nbsp;| eval _time = 0&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;| eval host="$tok_filterhost$"&amp;nbsp;&lt;BR /&gt;&amp;nbsp; | eval FreeSpace =&amp;nbsp;&lt;SPAN&gt;"No event for this host"&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; ]&lt;BR /&gt;| search host=$tok_filterhost$&lt;BR /&gt;| stats latest(FreeSpace) as FreeSpace by host&lt;BR /&gt;| table FreeSpace&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 06:23:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511054#M143134</guid>
      <dc:creator>kmugglet</dc:creator>
      <dc:date>2020-07-27T06:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511055#M143135</link>
      <description>&lt;P&gt;Oh wait , that doesn't actually solve your initial problem does it..........&lt;/P&gt;&lt;P&gt;Gimme 5 mins&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 06:26:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511055#M143135</guid>
      <dc:creator>kmugglet</dc:creator>
      <dc:date>2020-07-27T06:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511056#M143136</link>
      <description>&lt;P&gt;No sorry same problem&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 06:30:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511056#M143136</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-07-27T06:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511060#M143137</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OK, 3rd time lucky&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;[| inputlookup host.csv&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;| table host] `diskspace`&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;| eval host=upper(host)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;| eval FreeSpace = round(FreeSpaceKB/1024/1024,1)&lt;BR /&gt;| rangemap field=FreeSpace low=0-30 elevated=31-99 high= 100-200 default=severe&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;| eval FreeSpace = FreeSpace." GB"&lt;BR /&gt;| append [&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;| makeresults&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;| eval _time = 0&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;| eval host="$tok_filterhost$"&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; &amp;nbsp;| range="guarded"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; | eval NoSpace =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"No event for this host"&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; ]&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;| search host=$tok_filterhost$&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;| stats latest(FreeSpace) as FreeSpace latest(range) AS range&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;make sure you &lt;STRONG&gt;turn off&lt;/STRONG&gt; use colors in the Viz format , adjust your color levels accordingly in the rangemap.&lt;BR /&gt;low is green, elevated is yellow, severe is red, guarded will be blue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation (3).png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9880iAA9940427713DE5B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation (3).png" alt="Annotation (3).png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 06:50:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511060#M143137</guid>
      <dc:creator>kmugglet</dc:creator>
      <dc:date>2020-07-27T06:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511062#M143139</link>
      <description>&lt;P&gt;unfortunately no&lt;/P&gt;&lt;P&gt;"Error in rangemap command : invalid range"&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 07:10:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/511062#M143139</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-07-27T07:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result with unit format ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/513120#M143965</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try this run anywhere example and see it fits your use case&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Single Value&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="radio" token="data" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Data&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;With Data&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="0"&amp;gt;Without Data&amp;lt;/choice&amp;gt;
      &amp;lt;initialValue&amp;gt;1&amp;lt;/initialValue&amp;gt;
      &amp;lt;default&amp;gt;1&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;condition match="'result.dummy' ==&amp;amp;quot;false&amp;amp;quot;"&amp;gt;
              &amp;lt;set token="unit"&amp;gt;GB&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;set token="unit"&amp;gt;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
          &amp;lt;query&amp;gt;|makeresults |eval host="host1",FreeSpace=25|eval dummy="false"|where 1=$data$
                  |appendpipe 
                      [| stats count 
                      | eval FreeSpace="No event for this host" 
                      | where count = 0 
                      | eval dummy="true"
                      | table FreeSpace,dummy ]
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorBy"&amp;gt;value&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;block&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0xdc4e41","0xf1813f","0xf8be34","0xdc4e41"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,30,70]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="showSparkline"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendColorInterpretation"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="unit"&amp;gt;$unit$&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;after&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="useThousandSeparators"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2020 05:29:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/513120#M143965</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2020-08-08T05:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to change a single panel color based on text result with unit format ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/513246#M143990</link>
      <description>&lt;P&gt;yes thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2020 05:28:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-a-single-panel-color-based-on-text-result-with/m-p/513246#M143990</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-08-10T05:28:54Z</dc:date>
    </item>
  </channel>
</rss>

