<?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: Timechart - map data over same interval everyday in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289641#M3618</link>
    <description>&lt;P&gt;Thankyou.&lt;/P&gt;

&lt;P&gt;I would like to display the time and value on the graph.&lt;BR /&gt;
For instance, if the maximum duration for Oct 5 is 2214 at 09:30:51.225, I would like the data point to read (Oct 5 09:30:51 - 2214).&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;The idea is I want to study what is the trend of responseTime everyday. I am supposed to reduce it below 1000 ms, and I need to know how much of the transactions are taking more than 1000 ms.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 06 Oct 2017 16:16:08 GMT</pubDate>
    <dc:creator>deepak02</dc:creator>
    <dc:date>2017-10-06T16:16:08Z</dc:date>
    <item>
      <title>Timechart - map data over same interval everyday</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289638#M3615</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a requirement to timechart data over the same time everyday for the past one month.&lt;/P&gt;

&lt;P&gt;E.g.: Maximum responseTime between 9 and 10 everyday for the past month. &lt;/P&gt;

&lt;P&gt;Query to construct timechart is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=host1-vm1-dev.abp.com OR host=host2-vm1-dev.abp.com date_hour=9 | timechart max(responseTime)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How do I modify this search such that the timechart displays values only between 9 and 10 (and not the whole day) everyday?&lt;BR /&gt;
Sample chart given below.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Deepak&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/3606iDAC0E8D14D1C0B1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 15:23:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289638#M3615</guid>
      <dc:creator>deepak02</dc:creator>
      <dc:date>2017-10-06T15:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart - map data over same interval everyday</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289639#M3616</link>
      <description>&lt;P&gt;i see you're already limiting &lt;CODE&gt;date_hour=9&lt;/CODE&gt; so the data you're pulling is only from the 9AM hour (9-10 AM) every day, and not the whole day. Timechart will display the dates on the axis, not the date/hour. Timechart, also, will make the time continuous, if you don't specify a span. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|timechart span=1d max(responseTime)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;will group it into one day buckets, though it won't display the hour.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 15:54:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289639#M3616</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-10-06T15:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart - map data over same interval everyday</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289640#M3617</link>
      <description>&lt;P&gt;If you really WANT the hour displayed, you could try something like this...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=host1-vm1-dev.abp.com OR host=host2-vm1-dev.abp.com date_hour=9 
| bin _time span=1h
| timechart span=1h max(responseTime) cont=f
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But the axis labels in &lt;CODE&gt;timechart&lt;/CODE&gt; are a bit unpredictable.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 16:14:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289640#M3617</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-10-06T16:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart - map data over same interval everyday</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289641#M3618</link>
      <description>&lt;P&gt;Thankyou.&lt;/P&gt;

&lt;P&gt;I would like to display the time and value on the graph.&lt;BR /&gt;
For instance, if the maximum duration for Oct 5 is 2214 at 09:30:51.225, I would like the data point to read (Oct 5 09:30:51 - 2214).&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;The idea is I want to study what is the trend of responseTime everyday. I am supposed to reduce it below 1000 ms, and I need to know how much of the transactions are taking more than 1000 ms.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 16:16:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289641#M3618</guid>
      <dc:creator>deepak02</dc:creator>
      <dc:date>2017-10-06T16:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart - map data over same interval everyday</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289642#M3619</link>
      <description>&lt;P&gt;try this, instead:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=host1-vm1-dev.abp.com OR host=host2-vm1-dev.abp.com date_hour=9 
|timechart max(responseTime) span=5m cont=f
|timewrap 1d
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;change the span in timechart to your liking, i put it to bucket every 5 minutes.&lt;/P&gt;

&lt;P&gt;you can remove the timewrap if you want. that'll display a line per day, which might get hard to read.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 17:05:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Timechart-map-data-over-same-interval-everyday/m-p/289642#M3619</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-10-06T17:05:54Z</dc:date>
    </item>
  </channel>
</rss>

