<?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: Help using scale colors depending on the value result in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453341#M29731</link>
    <description>&lt;P&gt;"You dont need to use Capital letters , "just saying"&lt;/P&gt;

&lt;P&gt;in your search , you missed to add NbIndHost with the &lt;CODE&gt;table&lt;/CODE&gt; command which is in the actual XML I pasted&lt;/P&gt;

&lt;P&gt;i.e. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    | table Perc,NbIndHost
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 04 Jul 2019 08:50:30 GMT</pubDate>
    <dc:creator>renjith_nair</dc:creator>
    <dc:date>2019-07-04T08:50:30Z</dc:date>
    <item>
      <title>Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453330#M29720</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;
Is it possible in the XML below to use scale colors?&lt;BR /&gt;
If perc result is :&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;&amp;lt;5% I want to color the value in green&lt;/LI&gt;
&lt;LI&gt;between 5 and 25% I want to color the value in orange&lt;/LI&gt;
&lt;LI&gt;&amp;gt;25% I want to color the value in red&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Many thanks&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row id="first"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Crashes - Volume percentage (%)&amp;lt;/title&amp;gt;
      &amp;lt;single id="test"&amp;gt;
        &amp;lt;title&amp;gt;Source : Windows Event Viewer (ID 6008) - Slot time : last 30 days&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;[| inputlookup host.csv 
    | table host] `BSOD` 
| dedup host 
| lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE 
| search SITE=$tok_filtersite|s$ 
| stats dc(host) as NbEventCodeHost 
| appendcols 
    [| inputlookup host.csv 
    | lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE 
    | search SITE=$tok_filtersite|s$ 
    | stats dc(host) as NbIndHost 
        ] 
| eval Perc=round((NbEventCodeHost/NbIndHost)*100,2). " %" + " / " + NbIndHost + " machines " 
| table Perc&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-30d@d&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x65a637","0xd93f3c","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,1]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Jul 2019 12:31:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453330#M29720</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-01T12:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453331#M29721</link>
      <description>&lt;P&gt;@jip31,&lt;/P&gt;

&lt;P&gt;It's possible but the value has to be numeric. &lt;/P&gt;

&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row id="first"&amp;gt;
     &amp;lt;panel&amp;gt;
       &amp;lt;title&amp;gt;Crashes - Volume percentage (%)&amp;lt;/title&amp;gt;
       &amp;lt;single id="test"&amp;gt;
         &amp;lt;title&amp;gt;Source : Windows Event Viewer (ID 6008) - Slot time : last 30 days&amp;lt;/title&amp;gt;
         &amp;lt;search&amp;gt;
           &amp;lt;query&amp;gt;[| inputlookup host.csv 
     | table host] `BSOD` 
 | dedup host 
 | lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE 
 | search SITE=$tok_filtersite|s$ 
 | stats dc(host) as NbEventCodeHost 
 | appendcols 
     [| inputlookup host.csv 
     | lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE 
     | search SITE=$tok_filtersite|s$ 
     | stats dc(host) as NbIndHost 
         ] 
 | eval Perc=round((NbEventCodeHost/NbIndHost)*100,2)
 | table Perc,NbIndHost&amp;lt;/query&amp;gt;
           &amp;lt;earliest&amp;gt;-30d@d&amp;lt;/earliest&amp;gt;
           &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
           &amp;lt;done&amp;gt;
                     &amp;lt;set token="NbInd_Token"&amp;gt;$result.NbIndHost$&amp;lt;/set&amp;gt;
           &amp;lt;/done&amp;gt;
         &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;block&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x65a637","0xf1813f","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[5,25]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&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;%&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="underLabel"&amp;gt;/ $NbInd_Token$ machines&amp;lt;/option&amp;gt;
       &amp;lt;/single&amp;gt;
     &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Jul 2019 14:26:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453331#M29721</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-07-01T14:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453332#M29722</link>
      <description>&lt;P&gt;thanks renjith &lt;BR /&gt;
last question&lt;BR /&gt;
why you have deleted : &lt;CODE&gt;+ " / " + NbIndHost + " machines "&lt;/CODE&gt;?&lt;BR /&gt;
I need to keep this piece of code and to color it in blue&lt;BR /&gt;
is it possible??&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 06:00:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453332#M29722</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-02T06:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453333#M29723</link>
      <description>&lt;P&gt;As mentioned above, single value customization works on numeric values. So if you add the strings to that, then the formatting can not be done.&lt;BR /&gt;
One option is to use under label option and set the value there. I have updated the answer with that option. &lt;BR /&gt;
If that's not what you are looking for, then you might need to use either the Status Indicator App or css/js solutions&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 10:17:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453333#M29723</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-07-02T10:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453334#M29724</link>
      <description>&lt;P&gt;thanks renjith&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 11:35:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453334#M29724</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-02T11:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453335#M29725</link>
      <description>&lt;P&gt;hi&lt;BR /&gt;
i just have an issue with&lt;BR /&gt;&lt;BR /&gt;
     / $NbIndHost$ machines&lt;BR /&gt;
the token doesnt works (see screenshot)&lt;BR /&gt;
&lt;A href="https://www.cjoint.com/c/IGdhqOOpLLd"&gt;https://www.cjoint.com/c/IGdhqOOpLLd&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;have you an idea??&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2019 07:16:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453335#M29725</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-03T07:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453336#M29726</link>
      <description>&lt;P&gt;@jip31,&lt;/P&gt;

&lt;P&gt;As mentioned in the above XML, have you added this part in search tag?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
            &amp;lt;done&amp;gt;
                      &amp;lt;set token="NbIndHost"&amp;gt;$result.NbIndHost$&amp;lt;/set&amp;gt;
            &amp;lt;/done&amp;gt;
          &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Jul 2019 13:05:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453336#M29726</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-07-03T13:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453337#M29727</link>
      <description>&lt;P&gt;Yes&lt;BR /&gt;
you can see my xml&lt;BR /&gt;
     &lt;PANEL&gt;&lt;BR /&gt;
          &lt;TITLE&gt;TEST&lt;/TITLE&gt;&lt;BR /&gt;
          &lt;SINGLE&gt;&lt;BR /&gt;
            &lt;TITLE&gt;TEST&lt;/TITLE&gt;&lt;BR /&gt;
            &lt;SEARCH&gt;&lt;BR /&gt;
              &lt;QUERY&gt;[| inputlookup host.csv &lt;BR /&gt;
        | table host] index="ai-wkst-wineventlog-fr" sourcetype=XmlWinEventLog source="XmlWinEventLog:System" EventCode=* (Level=1 OR Level=2 OR Level=3) &lt;BR /&gt;
    | dedup host &lt;BR /&gt;
    | lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE &lt;BR /&gt;
    | search SITE=$tok_filtersite|s$ &lt;BR /&gt;
    | stats dc(host) as NbEventCodeHost &lt;BR /&gt;
    | appendcols &lt;BR /&gt;
        [| inputlookup host.csv &lt;BR /&gt;
        | lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE &lt;BR /&gt;
        | search SITE=$tok_filtersite|s$ &lt;BR /&gt;
        | stats dc(host) as NbIndHost &lt;BR /&gt;
            ] &lt;BR /&gt;
    | eval Perc=round((NbEventCodeHost/NbIndHost)*100,2)&lt;BR /&gt;
    | table Perc&lt;/QUERY&gt;&lt;BR /&gt;
              &lt;EARLIEST&gt;-30d@d&lt;/EARLIEST&gt;&lt;BR /&gt;
              &lt;LATEST&gt;now&lt;/LATEST&gt;&lt;DONE&gt;&lt;BR /&gt;
                           &lt;SET token="NbIndHost"&gt;$result.NbIndHost$&lt;/SET&gt;&lt;BR /&gt;
                 &lt;/DONE&gt;&lt;BR /&gt;
            &lt;/SEARCH&gt;&lt;BR /&gt;
            block&lt;BR /&gt;
            ["0x65a637","0xf1813f","0xd93f3c"]&lt;BR /&gt;
            [5,25]&lt;BR /&gt;
            progressbar&lt;BR /&gt;
            absolute&lt;BR /&gt;
            %&lt;BR /&gt;
            1&lt;BR /&gt;
            / $NbIndHost$ machines&lt;BR /&gt;
          &lt;/SINGLE&gt;&lt;BR /&gt;
        &lt;/PANEL&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 01:14:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453337#M29727</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-09-30T01:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453338#M29728</link>
      <description>&lt;P&gt;Not able to see the xml. can you put them in &lt;CODE&gt;code&lt;/CODE&gt; to avoid the xml truncate?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2019 14:11:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453338#M29728</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-07-03T14:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453339#M29729</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;TEST&amp;lt;/title&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;title&amp;gt;TEST&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;[| inputlookup host.csv 
    | table host] index="ai-wkst-wineventlog-fr" sourcetype=XmlWinEventLog source="XmlWinEventLog:System" EventCode=* (Level=1 OR Level=2 OR Level=3) 
| dedup host 
| lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE 
| search SITE=$tok_filtersite|s$ 
| stats dc(host) as NbEventCodeHost 
| appendcols 
    [| inputlookup host.csv 
    | lookup lookup_cmdb_fo_all.csv HOSTNAME as host output SITE 
    | search SITE=$tok_filtersite|s$ 
    | stats dc(host) as NbIndHost 
        ] 
| eval Perc=round((NbEventCodeHost/NbIndHost)*100,2)
| table Perc&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-30d@d&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;&amp;lt;done&amp;gt;
                       &amp;lt;set token="NbIndHost"&amp;gt;$result.NbIndHost$&amp;lt;/set&amp;gt;
             &amp;lt;/done&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;block&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x65a637","0xf1813f","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[5,25]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&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;%&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="underLabel"&amp;gt;/ $NbIndHost$ machines&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Jul 2019 05:50:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453339#M29729</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-04T05:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453340#M29730</link>
      <description>&lt;P&gt;HERE IS THE CODE&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 05:50:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453340#M29730</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-04T05:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453341#M29731</link>
      <description>&lt;P&gt;"You dont need to use Capital letters , "just saying"&lt;/P&gt;

&lt;P&gt;in your search , you missed to add NbIndHost with the &lt;CODE&gt;table&lt;/CODE&gt; command which is in the actual XML I pasted&lt;/P&gt;

&lt;P&gt;i.e. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    | table Perc,NbIndHost
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Jul 2019 08:50:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453341#M29731</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-07-04T08:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453342#M29732</link>
      <description>&lt;P&gt;oh sorry its exact&lt;BR /&gt;
I didnt see that you added this in table&lt;BR /&gt;
thanks&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 09:38:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453342#M29732</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-04T09:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453343#M29733</link>
      <description>&lt;P&gt;But I found a second issue&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$result.NbIndHost$ is linked to a dropdown list like you can see in `| search SITE=$tok_filtersite|s$ `
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but when I am doing a choice in &lt;CODE&gt;| search SITE=$tok_filtersite|s$&lt;/CODE&gt; the result in &lt;CODE&gt;$result.NbIndHost$&lt;/CODE&gt; doesnt change&lt;BR /&gt;
Have you an idea please??&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 11:25:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453343#M29733</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-04T11:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453344#M29734</link>
      <description>&lt;P&gt;Updated the answer to change the token name just to avoid confusions&lt;/P&gt;

&lt;P&gt;token name has been changed from &lt;CODE&gt;NbIndHost&lt;/CODE&gt; to &lt;CODE&gt;NbInd_Token&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Regarding your question, when you change the token , does the value under the field &lt;CODE&gt;NbIndHost&lt;/CODE&gt; change? You can view that by opening the search&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 13:06:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453344#M29734</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-07-04T13:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453345#M29735</link>
      <description>&lt;P&gt;like this is correct!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 13:42:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453345#M29735</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-04T13:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453346#M29736</link>
      <description>&lt;P&gt;is it working for you or do you have still issues?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jul 2019 05:37:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453346#M29736</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-07-06T05:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help using scale colors depending on the value result</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453347#M29737</link>
      <description>&lt;P&gt;its ok thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jul 2019 14:53:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-using-scale-colors-depending-on-the-value-result/m-p/453347#M29737</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-07-07T14:53:27Z</dc:date>
    </item>
  </channel>
</rss>

