<?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: Use of fillnull displays wrong color in 'single value' in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405502#M117214</link>
    <description>&lt;P&gt;hahah, well replace that one then with this :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=captiva 
|chart count by message.messageid 
| search count &amp;lt; 2 
|stats sum(count)
| append [ | makeresults | eval count=0 | table count ] 
| head 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;if there are no values, sum will not give a null field, it will actually give nothing at all, so you need to create an extra fake field that will only show in case there are no results &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jun 2019 10:32:05 GMT</pubDate>
    <dc:creator>DavidHourani</dc:creator>
    <dc:date>2019-06-19T10:32:05Z</dc:date>
    <item>
      <title>Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405491#M117203</link>
      <description>&lt;P&gt;I am using  &lt;CODE&gt;| fillnull  totalCount&lt;/CODE&gt; in my search so I get an 0 when there is no result.&lt;BR /&gt;
The color range I use is from min to 0 is green, from 0 to max is red. &lt;BR /&gt;
Somehow the '0' is still showing red. Is there any way to change this?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 12:06:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405491#M117203</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-05T12:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405492#M117204</link>
      <description>&lt;P&gt;do from min to 0 green and from 1 to max red&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 12:51:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405492#M117204</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2019-06-05T12:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405493#M117205</link>
      <description>&lt;P&gt;Hi @Mike6960,&lt;/P&gt;

&lt;P&gt;Use  &lt;CODE&gt;|filnull totalCount value=0&lt;/CODE&gt;. Also, make sure color configuration is saved properly to save the dashboard and refresh the browser page. Otherwise, the configuration (min-0 green and 0-max red) works for me. (I'm using Splunk version 7.2) Check XML would look like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="rangeColors"&amp;gt;["0x53a051","0xdc4e41"]&amp;lt;/option&amp;gt;
&amp;lt;option name="rangeValues"&amp;gt;[0]&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 12:57:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405493#M117205</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-05T12:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405494#M117206</link>
      <description>&lt;P&gt;Hi @Mike6960,&lt;/P&gt;

&lt;P&gt;Make sure you have something like this for your colors in xml :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="rangeColors"&amp;gt;["0x65a637","0xd93f3c"]&amp;lt;/option&amp;gt;
&amp;lt;option name="rangeValues"&amp;gt;[0.99]&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also since this makes 0-0.99 green you can use 0.1 instead for &lt;CODE&gt;fillnull&lt;/CODE&gt; if 0 is still not working :   &lt;CODE&gt;...|fillnull value=0.1 totalCount&lt;/CODE&gt;  or force to zero just in case : &lt;CODE&gt;...|fillnull value=0 totalCount&lt;/CODE&gt;  &lt;/P&gt;

&lt;P&gt;Cheers,&lt;BR /&gt;
David&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 13:12:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405494#M117206</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-05T13:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405495#M117207</link>
      <description>&lt;P&gt;No, that doesn't work either&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:07:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405495#M117207</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-05T14:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405496#M117208</link>
      <description>&lt;P&gt;I have the same in my xml en tried your suggestions but it does not work&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:08:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405496#M117208</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-05T14:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405497#M117209</link>
      <description>&lt;P&gt;tried your suggestions but it does not work&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:08:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405497#M117209</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-05T14:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405498#M117210</link>
      <description>&lt;P&gt;could you please post the xml for your single value view ?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:13:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405498#M117210</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-05T14:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405499#M117211</link>
      <description>&lt;P&gt;From the UI edit dashboard and check XML. Also, give me which Splunk verion you are using.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:14:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405499#M117211</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-05T14:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405500#M117212</link>
      <description>&lt;P&gt;Version 7.0.0 &lt;BR /&gt;
value&lt;BR /&gt;
        block&lt;BR /&gt;
        all&lt;BR /&gt;
        0&lt;BR /&gt;
        ["0x65a637","0xd93f3c"]&lt;BR /&gt;
        [1]&lt;BR /&gt;
        progressbar&lt;BR /&gt;
        1&lt;BR /&gt;
        1&lt;BR /&gt;
        0&lt;BR /&gt;
        1&lt;BR /&gt;
        medium&lt;BR /&gt;
        standard&lt;BR /&gt;
        absolute&lt;BR /&gt;
        Niet aangekomen Verint&lt;BR /&gt;
        after&lt;BR /&gt;
        1&lt;BR /&gt;
        1&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 06:40:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405500#M117212</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-06T06:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405501#M117213</link>
      <description>&lt;P&gt;@DavidHourani , i got it working. I had the fillnull not at the end. But I have another search where te fillnull does not work at all. Maybe you see why?&lt;/P&gt;

&lt;P&gt;index=captiva &lt;BR /&gt;
|chart count by message.messageid &lt;BR /&gt;
| search count &amp;lt; 2 &lt;BR /&gt;
|stats sum(count)&lt;BR /&gt;
| fillnull count value=0&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 10:28:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405501#M117213</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-19T10:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405502#M117214</link>
      <description>&lt;P&gt;hahah, well replace that one then with this :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=captiva 
|chart count by message.messageid 
| search count &amp;lt; 2 
|stats sum(count)
| append [ | makeresults | eval count=0 | table count ] 
| head 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;if there are no values, sum will not give a null field, it will actually give nothing at all, so you need to create an extra fake field that will only show in case there are no results &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 10:32:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405502#M117214</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-19T10:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405503#M117215</link>
      <description>&lt;P&gt;@DavidHourani  Thanks, I get a 0 value now. I edited the xml like you suggested in your first answer and also this works great!. Thank You very much. I dont think i will ever accomplish using splunk without asking for help ....&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 11:31:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405503#M117215</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-19T11:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405504#M117216</link>
      <description>&lt;P&gt;This should do the trick :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=captiva 
| chart count by message.messageid 
| where count &amp;lt; 2 
| stats sum(count) 
| append 
    [| makeresults 
    | eval count=0 
    | table count ] 
| head 1
          &amp;lt;earliest&amp;gt;-24h@h&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;["0x65a637","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0]&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;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&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="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;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Jun 2019 11:36:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405504#M117216</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-19T11:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405505#M117217</link>
      <description>&lt;P&gt;fixed xml formatting you can try the above now.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 11:39:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405505#M117217</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-19T11:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405506#M117218</link>
      <description>&lt;P&gt;@DavidHourani , it worked already with your first suggestion. I only thought I needed to use fillenull but i understand that the append does the same trick?&lt;/P&gt;

&lt;P&gt;My xml is now&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;single&amp;gt;
        &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=captiva 
 |chart count by message.messageid 
 | search count &amp;amp;lt; 2 
 |stats sum(count)
 | append [ | makeresults | eval count=0 | table count ] 
 | head 1&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;@d&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;all&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;["0x65a637","0x65a637","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0.99]&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;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&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="underLabel"&amp;gt;niet aangekomen in ESB&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;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Jun 2019 11:50:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405506#M117218</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-19T11:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405507#M117219</link>
      <description>&lt;P&gt;yes, it does, &lt;CODE&gt;fillnull&lt;/CODE&gt; will work when the column is already there and you want to fill null values whereas &lt;CODE&gt;append&lt;/CODE&gt; will work when there are no columns and no results typically after you run a stats command such as &lt;CODE&gt;sum&lt;/CODE&gt; or &lt;CODE&gt;count&lt;/CODE&gt; and there is nothing to &lt;CODE&gt;sum&lt;/CODE&gt;/&lt;CODE&gt;count&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 11:53:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405507#M117219</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-19T11:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405508#M117220</link>
      <description>&lt;P&gt;@DavidHourani . I was to soon with my cheering...It still displays a red color when the value is 0. &lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 12:20:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405508#M117220</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-19T12:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405509#M117221</link>
      <description>&lt;P&gt;try the &lt;CODE&gt;xml&lt;/CODE&gt; I sent you above, should be green&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 12:25:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405509#M117221</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-19T12:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Use of fillnull displays wrong color in 'single value'</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405510#M117222</link>
      <description>&lt;P&gt;I am going mad, its not working. This is the xml I have now:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;single&amp;gt;
                 &amp;lt;search&amp;gt;
           &amp;lt;query&amp;gt;index=captiva 
 | chart count by message.messageid 
 | where count &amp;amp;lt; 2
 | stats sum(count) 
 | append 
     [| makeresults 
     | eval count=0 
     | table count ] 
 | head 1
&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;["0x65a637","0xd93f3c"]&amp;lt;/option&amp;gt;
         &amp;lt;option name="rangeValues"&amp;gt;[0]&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;1&amp;lt;/option&amp;gt;
         &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
         &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
         &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
         &amp;lt;option name="trellis.size"&amp;gt;medium&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="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;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Jun 2019 12:58:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Use-of-fillnull-displays-wrong-color-in-single-value/m-p/405510#M117222</guid>
      <dc:creator>Mike6960</dc:creator>
      <dc:date>2019-06-19T12:58:51Z</dc:date>
    </item>
  </channel>
</rss>

