<?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 add a minimum and maximum range to a sparkline in a singlevalue chart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-a-minimum-and-maximum-range-to-a-sparkline-in-a/m-p/394968#M114729</link>
    <description>&lt;P&gt;It does not work for single-value visualisation sparklines.&lt;/P&gt;

&lt;P&gt;I get this error:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Node &amp;lt;format&amp;gt; is not allowed here
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My current formating options:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&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="height"&amp;gt;124&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0.0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x555","0xdc4e41","0xf1813f","0xf8be34","0x2E8B57"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[35,85,90,97]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendInterval"&amp;gt;-1m&amp;lt;/option&amp;gt;
        &amp;lt;option name="unit"&amp;gt;%&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;before&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 31 May 2019 09:31:23 GMT</pubDate>
    <dc:creator>martinpu</dc:creator>
    <dc:date>2019-05-31T09:31:23Z</dc:date>
    <item>
      <title>How to add a minimum and maximum range to a sparkline in a singlevalue chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-a-minimum-and-maximum-range-to-a-sparkline-in-a/m-p/394966#M114727</link>
      <description>&lt;P&gt;I have some single values graphs spark-lines that are supposed to return a success-rate of service calls by _time. Please see attached for example.&lt;/P&gt;

&lt;P&gt;The spark-line indicates how the success-rate looks in past minutes as compared to now, the number is the latest rate and the trend is that compared to latest- 1 span of _time.&lt;/P&gt;

&lt;P&gt;The trouble with this is that a drop of 25% in success-rate looks the same as a 2% drop due to the fact that the spark-line does not have a defined lower or upper boundary, boundaries are generated based on the data that is seen and cant be defined as static.&lt;/P&gt;

&lt;P&gt;So if success-rate drops to 95 and then back to 100 again, it looks the same as if it would have dropped to 25 and back to 100% again if looking only at spark-line. I would like it to always compare vs min 0 and max 100.&lt;/P&gt;

&lt;P&gt;I have tried these options but they are not working for this type of chart:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="chartRangeMin"&amp;gt;0&amp;lt;/option&amp;gt;
&amp;lt;option name="chartRangeMax"&amp;gt;100&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;error:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Unknown option name="chartRangeMin" for node="single"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any Ideas on how to make this happen?&lt;/P&gt;

&lt;P&gt;Attached is an image displaying a 1% drop.This should look like a barely noticeable blip - not like an upside-down triangle.&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 15:25:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-a-minimum-and-maximum-range-to-a-sparkline-in-a/m-p/394966#M114727</guid>
      <dc:creator>martinpu</dc:creator>
      <dc:date>2019-05-30T15:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a minimum and maximum range to a sparkline in a singlevalue chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-a-minimum-and-maximum-range-to-a-sparkline-in-a/m-p/394967#M114728</link>
      <description>&lt;P&gt;This works for me.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;format field="sparkline" type="sparkline"&amp;gt;
    &amp;lt;option name="type"&amp;gt;line&amp;lt;/option&amp;gt;
    &amp;lt;option name="height"&amp;gt;100px&amp;lt;/option&amp;gt;
    &amp;lt;option name="chartRangeMin"&amp;gt;0&amp;lt;/option&amp;gt;
    &amp;lt;option name="chartRangeMax"&amp;gt;100&amp;lt;/option&amp;gt;
&amp;lt;/format&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 05:45:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-a-minimum-and-maximum-range-to-a-sparkline-in-a/m-p/394967#M114728</guid>
      <dc:creator>jawaharas</dc:creator>
      <dc:date>2019-05-31T05:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a minimum and maximum range to a sparkline in a singlevalue chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-a-minimum-and-maximum-range-to-a-sparkline-in-a/m-p/394968#M114729</link>
      <description>&lt;P&gt;It does not work for single-value visualisation sparklines.&lt;/P&gt;

&lt;P&gt;I get this error:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Node &amp;lt;format&amp;gt; is not allowed here
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My current formating options:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&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="height"&amp;gt;124&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0.0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x555","0xdc4e41","0xf1813f","0xf8be34","0x2E8B57"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[35,85,90,97]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendInterval"&amp;gt;-1m&amp;lt;/option&amp;gt;
        &amp;lt;option name="unit"&amp;gt;%&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;before&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 09:31:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-a-minimum-and-maximum-range-to-a-sparkline-in-a/m-p/394968#M114729</guid>
      <dc:creator>martinpu</dc:creator>
      <dc:date>2019-05-31T09:31:23Z</dc:date>
    </item>
  </channel>
</rss>

