<?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 Merging TWO Timecharts overlay-One on Top of One Another in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151140#M42361</link>
    <description>&lt;P&gt;I have the following search.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91"  System="*" eventtype=autosys_initiated_jobs |timechart span=1d count(JOB_NAME) as Count |append [search index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91"  System="*" eventtype=autosys_initiated_jobs earliest=07/12/2015:0:0:0 latest=07/27/2015:0:0:0 |timechart span=1d count(JOB_NAME) |rename count(JOB_NAME) as "Close-Freeze Period" |fields "Close-Freeze Period"]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want the subsearch timechart to be an overlay on top of the first timechart. At the moment, the two timecharts are displayed next to one another. I would like them to be on top of one another. Please help! Thanks!&lt;/P&gt;</description>
    <pubDate>Fri, 31 Jul 2015 21:26:53 GMT</pubDate>
    <dc:creator>zd00191</dc:creator>
    <dc:date>2015-07-31T21:26:53Z</dc:date>
    <item>
      <title>Merging TWO Timecharts overlay-One on Top of One Another</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151140#M42361</link>
      <description>&lt;P&gt;I have the following search.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91"  System="*" eventtype=autosys_initiated_jobs |timechart span=1d count(JOB_NAME) as Count |append [search index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91"  System="*" eventtype=autosys_initiated_jobs earliest=07/12/2015:0:0:0 latest=07/27/2015:0:0:0 |timechart span=1d count(JOB_NAME) |rename count(JOB_NAME) as "Close-Freeze Period" |fields "Close-Freeze Period"]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want the subsearch timechart to be an overlay on top of the first timechart. At the moment, the two timecharts are displayed next to one another. I would like them to be on top of one another. Please help! Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2015 21:26:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151140#M42361</guid>
      <dc:creator>zd00191</dc:creator>
      <dc:date>2015-07-31T21:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Merging TWO Timecharts overlay-One on Top of One Another</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151141#M42362</link>
      <description>&lt;P&gt;try - &lt;CODE&gt;index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91"  System="*" eventtype=autosys_initiated_jobs |timechart span=1d count(JOB_NAME) as Count |append [search index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91"  System="*" eventtype=autosys_initiated_jobs earliest=07/12/2015:0:0:0 latest=07/27/2015:0:0:0 |timechart span=1d count(JOB_NAME) |rename count(JOB_NAME) as "Close-Freeze Period" |fields "Close-Freeze Period"] | timechart first(*) as *&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2015 22:05:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151141#M42362</guid>
      <dc:creator>jnussbaum_splun</dc:creator>
      <dc:date>2015-07-31T22:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Merging TWO Timecharts overlay-One on Top of One Another</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151142#M42363</link>
      <description>&lt;P&gt;This should work:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91"  System="*" eventtype=autosys_initiated_jobs | timechart span=1d count(JOB_NAME) as Count | appendcols [search index=ko_autosys sourcetype=autosys_applog_scheduler_events host="usatlb98" OR host="usatlb91" System="*" eventtype=autosys_initiated_jobs earliest=07/12/2015:0:0:0 latest=07/27/2015:0:0:0 | timechart span=1d count(JOB_NAME) AS "Close-Freeze Period" | fields "Close-Freeze Period"]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 Jul 2015 22:09:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151142#M42363</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-07-31T22:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Merging TWO Timecharts overlay-One on Top of One Another</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151143#M42364</link>
      <description>&lt;P&gt;Just making the answer generic  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;your_query_with_timestamp&amp;gt;| timechart span=1h avg(datapoint1)
| appendcols [ | search &amp;lt;your_query_with_timestamp&amp;gt; | timechart span=1h avg(datapoint2)]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Things to note&lt;BR /&gt;
1. timechart "span" should be similar&lt;BR /&gt;
2. timezone of data should be similar&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2019 10:27:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/151143#M42364</guid>
      <dc:creator>koshyk</dc:creator>
      <dc:date>2019-09-13T10:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Merging TWO Timecharts overlay-One on Top of One Another</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/539387#M152553</link>
      <description>&lt;P&gt;Really help out! Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2021 03:07:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Merging-TWO-Timecharts-overlay-One-on-Top-of-One-Another/m-p/539387#M152553</guid>
      <dc:creator>Yepeza</dc:creator>
      <dc:date>2021-02-11T03:07:19Z</dc:date>
    </item>
  </channel>
</rss>

