<?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: Why does the timechart command display inconsistent results when the time range is changed? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297195#M89646</link>
    <description>&lt;P&gt;Hmmm.  How is the different time range being entered?  standard search or dashboard?&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2017 21:05:03 GMT</pubDate>
    <dc:creator>DalJeanis</dc:creator>
    <dc:date>2017-02-13T21:05:03Z</dc:date>
    <item>
      <title>Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297192#M89643</link>
      <description>&lt;P&gt;When I use the following search (some criteria obfuscated for security): &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main sourcetype=transaction application=foo component=bar  customerCode=x Type=y messageType=z | timechart span=1d count as count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and I set the time range to a single day (9th of jan 2017), the resulting table shows a single result: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time                         count
2017-01-09T00:00:00.000+0100    1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;as I would expect, this is consistent with the event I find when I omit the &lt;CODE&gt;timechart&lt;/CODE&gt; command entirely, but when I change the time range to the whole month of jan 2017, I get this (just showing first 14 results)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time                         count
2017-01-01T00:00:00.000+0100    0
2017-01-02T00:00:00.000+0100    0
2017-01-03T00:00:00.000+0100    0
2017-01-04T00:00:00.000+0100    0
2017-01-05T00:00:00.000+0100    3
2017-01-06T00:00:00.000+0100    0
2017-01-07T00:00:00.000+0100    0
2017-01-08T00:00:00.000+0100    0
2017-01-09T00:00:00.000+0100    0
2017-01-10T00:00:00.000+0100    0
2017-01-11T00:00:00.000+0100    0
2017-01-12T00:00:00.000+0100    15
2017-01-13T00:00:00.000+0100    25
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;suddenly there is nothing counted on the 9th, how can this happen?&lt;/P&gt;

&lt;P&gt;in fact, if I click the cell that says zero in the table that gets returned, and select get view events, it takes me to the event that I would expect to be counted here:&lt;/P&gt;

&lt;P&gt;2017-01-09T13:36:56.109+0100    TRAN    b53a13ca-e1bc-4e64-964c-09c4714ba40e    custom-operations   process-engine  127.0.1.1   type:y|customerCode:x|duration:1327|bytesAllocated:15692632|executorUtilPct:0.0|messageType:z&lt;/P&gt;

&lt;P&gt;some data here is modified for security reasons, but that should not affect the anwswers&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 19:51:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297192#M89643</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-13T19:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297193#M89644</link>
      <description>&lt;P&gt;Please post the entire search that got you the last results.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 20:43:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297193#M89644</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-13T20:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297194#M89645</link>
      <description>&lt;P&gt;It's the same search, but with a different timerange&lt;/P&gt;

&lt;P&gt;index=main sourcetype=transaction application=foo component=bar customerCode=x Type=y messageType=z | timechart span=1d count as count&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 20:58:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297194#M89645</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-13T20:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297195#M89646</link>
      <description>&lt;P&gt;Hmmm.  How is the different time range being entered?  standard search or dashboard?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:05:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297195#M89646</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-13T21:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297196#M89647</link>
      <description>&lt;P&gt;Standard search, (I discovered it when I had a weird result in a dashboard, but I opened it in search)&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:12:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297196#M89647</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-13T21:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297197#M89648</link>
      <description>&lt;P&gt;Shot in the dark, but simplify "count as count"  to "count" -- and verify that there is no existing field called "count" on the events -- and see what happens.  &lt;/P&gt;

&lt;P&gt;I've noticed that splunk has occasional trouble distinguishing between the count it's doing at any given time and the count that is a field already on an event record.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:15:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297197#M89648</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-13T21:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297198#M89649</link>
      <description>&lt;P&gt;thanks for your suggestion but it makes no difference&lt;/P&gt;

&lt;P&gt;index=main sourcetype=transaction application=foo component=bar &lt;BR /&gt;
customerCode=x Type=y messageType=z | timechart span=1d count&lt;/P&gt;

&lt;P&gt;gives the same result, &lt;/P&gt;

&lt;P&gt;I'm positive that there is no count field, and&lt;BR /&gt;
 the same query with dc(uid) also gives no result (uid is the  b53a13ca-e1bc-4e64-964c-09c4714ba40e code in the event above)&lt;/P&gt;

&lt;P&gt;I also tried   it with putting a | fields command  before the timechart to rule out what you suggest:&lt;/P&gt;

&lt;P&gt;index=main sourcetype=transaction application=foo component=bar &lt;BR /&gt;
customerCode=x Type=y messageType=z | fields uid | timechart span=1d count&lt;/P&gt;

&lt;P&gt;and that makes no difference either&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:24:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297198#M89649</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-13T21:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297199#M89650</link>
      <description>&lt;P&gt;Do you get results for jan 9 when you run this??&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main sourcetype=transaction application=foo component=bar 
customerCode=x Type=y messageType=z | bucket span=1d _time | stats count by _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:29:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297199#M89650</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-13T21:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297200#M89651</link>
      <description>&lt;P&gt;Hmmm.  I'm seeing nothing at all.  There's only one handle left to pull on.  Try it without the timespan parameter, or with different timespan parameters - 8h or something. &lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:33:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297200#M89651</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-13T21:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297201#M89652</link>
      <description>&lt;P&gt;tried that and I get this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time                         count
2017-01-05T00:00:00.000+0100    3
2017-01-12T00:00:00.000+0100    15
2017-01-13T00:00:00.000+0100    25
2017-01-16T00:00:00.000+0100    25
2017-01-19T00:00:00.000+0100    7
2017-01-20T00:00:00.000+0100    13
2017-01-24T00:00:00.000+0100    4
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;so basically no, no results for jan 9, &lt;BR /&gt;
this is what I would get if I ran the original timechart command with cont=false (verified)&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:34:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297201#M89652</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-13T21:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297202#M89653</link>
      <description>&lt;P&gt;my replies keep dissapearing...&lt;/P&gt;

&lt;P&gt;I tried both your suggestions, but I discovered that the problem is not with the timechart but before it,&lt;/P&gt;

&lt;P&gt;when I run the search  index=main sourcetype=transaction application=foo component=bar &lt;BR /&gt;
 customerCode=x Type=y messageType=z  for only the 9th, I get the event above&lt;/P&gt;

&lt;P&gt;but when I run it from 8th to 10th, I get no results !?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:55:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297202#M89653</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-13T21:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297203#M89654</link>
      <description>&lt;P&gt;@fvegdom - Regarding your comment about why your replies were disappearing: Since you a new user to Answers, your comments were sent to the moderation queue before being published; I just published one of them above. &lt;/P&gt;

&lt;P&gt;Typically, users should see a banner up top that shows that their post is being moderated. I apologize if it did not display as it is unfortunately it's a bug on our current platform that will hopefully be fixed soon.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 22:08:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297203#M89654</guid>
      <dc:creator>aaraneta_splunk</dc:creator>
      <dc:date>2017-02-13T22:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297204#M89655</link>
      <description>&lt;P&gt;How big is your main index? if you just run this for say jan8 to jan10, how many events that you get for each day?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main sourcetype=transaction | timechart span=1d count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Feb 2017 22:09:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297204#M89655</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-13T22:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297205#M89656</link>
      <description>&lt;P&gt;@aaraneta, good to know, thanks&lt;BR /&gt;
@somsoni2 just woke up and ran it for the month and this is what I get&lt;/P&gt;

&lt;P&gt;_time   count&lt;BR /&gt;
2017-01-01T00:00:00.000+0100    436892&lt;BR /&gt;
2017-01-02T00:00:00.000+0100    633636&lt;BR /&gt;
2017-01-03T00:00:00.000+0100    700639&lt;BR /&gt;
2017-01-04T00:00:00.000+0100    691269&lt;BR /&gt;
2017-01-05T00:00:00.000+0100    754214&lt;BR /&gt;
2017-01-06T00:00:00.000+0100    708054&lt;BR /&gt;
2017-01-07T00:00:00.000+0100    537937&lt;BR /&gt;
2017-01-08T00:00:00.000+0100    528364&lt;BR /&gt;
2017-01-09T00:00:00.000+0100    726485&lt;BR /&gt;
2017-01-10T00:00:00.000+0100    807973&lt;BR /&gt;
2017-01-11T00:00:00.000+0100    790816&lt;BR /&gt;
2017-01-12T00:00:00.000+0100    795250&lt;BR /&gt;
2017-01-13T00:00:00.000+0100    775745&lt;/P&gt;

&lt;P&gt;so 100ks of events per day &lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 05:38:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297205#M89656</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-14T05:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297206#M89657</link>
      <description>&lt;P&gt;First of all, I see no point of renaming count as count, unless you want it to be uppercase. like count as Count.&lt;BR /&gt;
Can you also verify the results with stats command instead of timechart&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;Your Base Search&amp;gt;
| bin _time span=1d
| stats count as Count by date_mday
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Feb 2017 09:47:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297206#M89657</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-02-14T09:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297207#M89658</link>
      <description>&lt;P&gt;Hi niketnilay,&lt;/P&gt;

&lt;P&gt;thanks for you reply. &lt;BR /&gt;
There is indeed no purpose in it, this was just a relic of something else I did earlier(it was dc(uid) as count) &lt;/P&gt;

&lt;P&gt;when I run the search you suggest  I get &lt;BR /&gt;
date_mday   Count&lt;BR /&gt;
12  15&lt;BR /&gt;
13  25&lt;BR /&gt;
16  25&lt;BR /&gt;
19  7&lt;BR /&gt;
20  13&lt;BR /&gt;
24  4&lt;BR /&gt;
5   3&lt;BR /&gt;
so similar to what I got as a result of what somesoni2 suggested &lt;/P&gt;

&lt;BLOCKQUOTE&gt;
&lt;P&gt;index=main sourcetype=transaction&lt;BR /&gt;
application=foo component=bar&lt;BR /&gt;&lt;BR /&gt;
customerCode=x Type=y messageType=z |&lt;BR /&gt;
bucket span=1d _time | stats count by&lt;BR /&gt;
_time&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;except this is not ordered by time. &lt;/P&gt;

&lt;P&gt;in my last comment I found however that the timechart command itself is not the problem. The initial search seems to miss this transaction entirely when it is run with a larger time range:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
&lt;P&gt;when I run the search index=main&lt;BR /&gt;
sourcetype=transaction application=foo&lt;BR /&gt;
component=bar  customerCode=x Type=y&lt;BR /&gt;
messageType=z for only the 9th, I get&lt;BR /&gt;
the event above&lt;/P&gt;

&lt;P&gt;but when I run it from 8th to 10th, I&lt;BR /&gt;
get no results !?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;so I should focus on why the search is not returning this event in the first place and not on any problems with timechart. Should I make a different question for that?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 15:14:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297207#M89658</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-14T15:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297208#M89659</link>
      <description>&lt;P&gt;Depending upon the hardware configuration of your Splunk instance, this can be very large and/or indexers may have low memory dropping events. Just to confirm that large number of result is a problem and not with the data bucket that stores the data for Jan 09, can you run your original search with 24 hr time range from 2017-01-08T14:00:00+0100 to 2017-01-09T14:00:00+0100, so that we know there is a matching events and time range is one day for which we know it works fine. After that try with 2017-01-08T00:00:00+0100 to 2017-01-09T14:00:00+0100 (about 1.5 days)&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 15:26:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297208#M89659</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-14T15:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297209#M89660</link>
      <description>&lt;P&gt;I think it would be a good idea.  People reading the title of this one will focus on "why does timechart", and your real problem is "search time range returns inconsistent results".&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 16:09:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297209#M89660</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-14T16:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297210#M89661</link>
      <description>&lt;P&gt;It turns out the problem is not because of any issues with timechart but due to the fact that the base search is not returning the missing event in the first place. I will create a different issue to answer why that is happening. &lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 19:37:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297210#M89661</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-14T19:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why does the timechart command display inconsistent results when the time range is changed?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297211#M89662</link>
      <description>&lt;P&gt;hi @somesoni2&lt;/P&gt;

&lt;P&gt;same search with time range   2017-01-08T14:00:00+0100 to 2017-01-09T14:00:00+0100&lt;BR /&gt;
returns the event&lt;/P&gt;

&lt;P&gt;time range &lt;BR /&gt;
2017-01-08T00:00:00+0100 to 2017-01-09T14:00:00+0100 does too&lt;/P&gt;

&lt;P&gt;If I leave the start of the range at 2017-01-08T00:00:00+0100 I can go up to 2017-01-10T11:00:00+010 and get the same results&lt;/P&gt;

&lt;P&gt;if I set it to 2017-01-10T13:00:00+010 I get 40 results and then If I put it to &lt;BR /&gt;
 2017-01-10T14:00:00+010 I get no results again&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 20:30:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-the-timechart-command-display-inconsistent-results-when/m-p/297211#M89662</guid>
      <dc:creator>fvegdom</dc:creator>
      <dc:date>2017-02-14T20:30:49Z</dc:date>
    </item>
  </channel>
</rss>

