<?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 compare two time same time frames with different day's. in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504499#M140851</link>
    <description>&lt;P&gt;I didn't see any such requirement from the first question and your query.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and your query is&lt;STRONG&gt; span=15min&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;for 1 hour comparison, How are you going to aggregate 4 values?&lt;/P&gt;&lt;P&gt;Please summarize what you want to do before you ask the question again and again.&lt;/P&gt;</description>
    <pubDate>Mon, 15 Jun 2020 21:24:42 GMT</pubDate>
    <dc:creator>to4kawa</dc:creator>
    <dc:date>2020-06-15T21:24:42Z</dc:date>
    <item>
      <title>How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504217#M140755</link>
      <description>&lt;P&gt;How to compare the average value of the field in two different time frames i.e same time today with same time yesterday.&lt;/P&gt;&lt;P&gt;Compare the today time frame with yesterday's time frame.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 17:51:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504217#M140755</guid>
      <dc:creator>rchams</dc:creator>
      <dc:date>2020-06-12T17:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504220#M140756</link>
      <description>Depending on your query, you may be able to use the timewrap command.</description>
      <pubDate>Fri, 12 Jun 2020 18:16:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504220#M140756</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-06-12T18:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504240#M140759</link>
      <description>&lt;P&gt;If i use timewrap it gives the total day average like yesterday total average comparing with today time frame(example like last 60mins). I'm looking for the search to compare the average value in the same time frame like 1 pm to 1.30 pm today with 1 pm to 1.30 pm yesterday.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my search is :&lt;/P&gt;&lt;P&gt;index=XXXX sourcetype=XXXXX esb_service="XXXXXX"&amp;nbsp; esb_environment=prod esb_event=esbRespBE&amp;nbsp;&lt;BR /&gt;| eval esb_backend_time=round(esb_backend_time/1000,2)&lt;BR /&gt;| bin _time span=15m&lt;BR /&gt;| stats max(esb_backend_time) as response_time by esb_service,_time&lt;BR /&gt;| eval response_time = round(response_time,2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 20:19:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504240#M140759</guid>
      <dc:creator>rchams</dc:creator>
      <dc:date>2020-06-12T20:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504242#M140760</link>
      <description>&lt;P&gt;&lt;SPAN&gt;index=XXXX sourcetype=XXXXX esb_service="XXXXXX"&amp;nbsp; esb_environment=prod esb_event=esbRespBE&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| eval esb_backend_time=round(esb_backend_time/1000,2)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| bin _time span=15m&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| stats max(esb_backend_time) as response_time by esb_service,_time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| eval response_time = round(response_time,2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| eval date=if(strftime(now(),"%F")=strftime(_time,"%F"),"today","yesterday")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| eval _time=strftime(_time,"%T")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| xyseries _time date&amp;nbsp;response_time&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 21:17:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504242#M140760</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-06-12T21:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504438#M140798</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184221"&gt;@to4kawa&lt;/a&gt;&amp;nbsp; @Hi Thanks for the query.&lt;/P&gt;&lt;P&gt;It's comparing total day, i'm looking for specific time frame today with yesterday. The query which you provided gives the today all day time frame comparison with yesterday all day comparison, if i'm looking 1 hr window for today need to compare with same 1 hr time frame yesterday only. Only those results needs to be displayed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2020 14:02:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504438#M140798</guid>
      <dc:creator>rchams</dc:creator>
      <dc:date>2020-06-15T14:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504499#M140851</link>
      <description>&lt;P&gt;I didn't see any such requirement from the first question and your query.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and your query is&lt;STRONG&gt; span=15min&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;for 1 hour comparison, How are you going to aggregate 4 values?&lt;/P&gt;&lt;P&gt;Please summarize what you want to do before you ask the question again and again.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2020 21:24:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504499#M140851</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-06-15T21:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504715#M140958</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184221"&gt;@to4kawa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to compare the average response time value in 1 hr for span=15 mins to same 1 hr time in yesterday (like 4 aggregate values).&amp;nbsp;&lt;/P&gt;&lt;P&gt;example i want to compare the average response time for the period 06/15/2020 3 PM to 4 PM with&amp;nbsp;&amp;nbsp;06/16/2020 3 PM to 4 PM . Only 4 aggregate comparison values should be appear as my results.&amp;nbsp;&lt;BR /&gt;average value comparison&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking for results like below&lt;/P&gt;&lt;P&gt;timeframe&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; today-value&amp;nbsp; &amp;nbsp; &amp;nbsp;yesterday-value&lt;/P&gt;&lt;P&gt;15.15.00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;00000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;00000&lt;/P&gt;&lt;P&gt;15.30.00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;44444&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;44444&lt;/P&gt;&lt;P&gt;15.45.00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;11111&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11111&lt;/P&gt;&lt;P&gt;16.00.00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 22222&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 22222&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 02:06:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504715#M140958</guid>
      <dc:creator>rchams</dc:creator>
      <dc:date>2020-06-17T02:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two time same time frames with different day's.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504759#M140968</link>
      <description>&lt;P&gt;please modify my query.&lt;/P&gt;&lt;P&gt;the result contains what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 09:32:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-compare-two-time-same-time-frames-with-different-day-s/m-p/504759#M140968</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-06-17T09:32:56Z</dc:date>
    </item>
  </channel>
</rss>

