<?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 make a chart overlay in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317669#M95034</link>
    <description>&lt;P&gt;@vino06... While you want to overlay Time fields over Count fields, your time fields are both in minute and millisecons. Based on the output, you might have to change the unit.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;option name="charting.axisTitleY.text"&amp;gt;Count&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.axisTitleY2.text"&amp;gt;Time&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.chart.overlayFields"&amp;gt;"Calls per minute", "Error per minute","Average Response Time (ms)"&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;zero&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: Based on the screenshot, you also might want to set the Null Value Mode to &lt;STRONG&gt;zero&lt;/STRONG&gt; or &lt;STRONG&gt;connected&lt;/STRONG&gt; which is currently gap. All these settings are directly accessible from&lt;CODE&gt;Edit &amp;gt; Format visualization&lt;/CODE&gt; in UI (if you want to avoid changing via Simple XML)&lt;/P&gt;</description>
    <pubDate>Thu, 25 May 2017 11:54:05 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-05-25T11:54:05Z</dc:date>
    <item>
      <title>How to make a chart overlay</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317667#M95032</link>
      <description>&lt;P&gt;I'm trying to make a graph using a chart overlay, scenario is I want to put all the transactions with minutes to the left and right for all transactions that are in count. Please see my search below and the graph.&lt;/P&gt;

&lt;P&gt;index="appdynamics" source="metrics.log" sourcetype="metrics" name=RDYWPD01-TomcatA:ServiceProxy:PortalProd:VerySlowCalls OR name=RDYWPD01-TomcatA:ServiceProxy:PortalProd:CallsPerMin OR name=RDYWPD01-TomcatA:ServiceProxy:PortalProd:ErrorsPerMin OR name=RDYWPD01-TomcatA:ServiceProxy:PortalProd:StallCount OR name=RDYWPD01:TomcatA:PortalProd:AveResponseTime&lt;BR /&gt;
            | timechart span=1d avg(value) by name&lt;BR /&gt;
             | rename RDYWPD01-TomcatA:ServiceProxy:PortalProd:VerySlowCalls as "Very Slow Calls", RDYWPD01-TomcatA:ServiceProxy:PortalProd:CallsPerMin as "Calls per minute", RDYWPD01-TomcatA:ServiceProxy:PortalProd:ErrorsPerMin as "Error per minute", RDYWPD01-TomcatA:ServiceProxy:PortalProd:StallCount as "Stall Counts", RDYWPD01:TomcatA:PortalProd:AveResponseTime as "Average Response Time (ms)"][1]&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 06:57:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317667#M95032</guid>
      <dc:creator>vino06</dc:creator>
      <dc:date>2017-05-25T06:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a chart overlay</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317668#M95033</link>
      <description>&lt;P&gt;HI @vino06,&lt;BR /&gt;
First, create overlay field in the search.&lt;/P&gt;

&lt;P&gt;//for example if overlay=100&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;YOUR SEARCH | eval overlay=100  
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Second, add charting.chart.overlayFields option in chart xml.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.chart.overlayFields"&amp;gt;overlay&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I hope it's helpful to you.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 11:37:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317668#M95033</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2017-05-25T11:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a chart overlay</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317669#M95034</link>
      <description>&lt;P&gt;@vino06... While you want to overlay Time fields over Count fields, your time fields are both in minute and millisecons. Based on the output, you might have to change the unit.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;option name="charting.axisTitleY.text"&amp;gt;Count&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.axisTitleY2.text"&amp;gt;Time&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.chart.overlayFields"&amp;gt;"Calls per minute", "Error per minute","Average Response Time (ms)"&amp;lt;/option&amp;gt;
    &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;zero&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: Based on the screenshot, you also might want to set the Null Value Mode to &lt;STRONG&gt;zero&lt;/STRONG&gt; or &lt;STRONG&gt;connected&lt;/STRONG&gt; which is currently gap. All these settings are directly accessible from&lt;CODE&gt;Edit &amp;gt; Format visualization&lt;/CODE&gt; in UI (if you want to avoid changing via Simple XML)&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 11:54:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317669#M95034</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-05-25T11:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a chart overlay</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317670#M95035</link>
      <description>&lt;P&gt;this question was asked earlier. &lt;A href="https://answers.splunk.com/answers/542628/chart-overlay-1.html"&gt;https://answers.splunk.com/answers/542628/chart-overlay-1.html&lt;/A&gt; for reference.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 12:06:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-make-a-chart-overlay/m-p/317670#M95035</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-05-25T12:06:34Z</dc:date>
    </item>
  </channel>
</rss>

