<?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: Load Time vs Event Time in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98612#M25381</link>
    <description>&lt;P&gt;Yes, there is such a field. It's called &lt;CODE&gt;_indextime&lt;/CODE&gt; and carries the time when an event was indexed, in epoch format.&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jul 2013 18:14:24 GMT</pubDate>
    <dc:creator>Ayn</dc:creator>
    <dc:date>2013-07-17T18:14:24Z</dc:date>
    <item>
      <title>Load Time vs Event Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98611#M25380</link>
      <description>&lt;P&gt;I know that I ca get the event time using "_time". Does Splunk keep track of the time the event was loaded into Splunk in a field? We have some duplicate data that was loaded for a day, but it was loaded on a different day than the original day. So, if I were able to do a search like below I could easily find the duplicate values and remove them.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="epicdata" earliest="07/03/2013:00:00:00" latest="07/04/2013:00:00:00" load_time&amp;gt;="07/04/2013:00:00:00" | delete
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Update:&lt;/P&gt;

&lt;P&gt;Here is what I did ... worked great! Basically, I got all of the events for 7/3 that were indexed on 7/6 and up and deleted them.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index = "myindex" _time &amp;gt;= "1372834800" _time &amp;lt; "1372921200" _indextime &amp;gt;= "1373094000" | delete

1372834800 epoch for 7/3/2013
1372921200 epoch for 7/4/2013
1373094000 epoch for 7/6/2013
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Jul 2013 18:06:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98611#M25380</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2013-07-17T18:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Load Time vs Event Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98612#M25381</link>
      <description>&lt;P&gt;Yes, there is such a field. It's called &lt;CODE&gt;_indextime&lt;/CODE&gt; and carries the time when an event was indexed, in epoch format.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 18:14:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98612#M25381</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-07-17T18:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load Time vs Event Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98613#M25382</link>
      <description>&lt;P&gt;Bless you. This will make it a cinch to remove the duplicate data.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 18:24:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98613#M25382</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2013-07-17T18:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Load Time vs Event Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98614#M25383</link>
      <description>&lt;P&gt;Is the epoch time in UTC/GMT or local?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 18:40:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98614#M25383</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2013-07-17T18:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Load Time vs Event Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98615#M25384</link>
      <description>&lt;P&gt;Awesome! It's local.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 18:44:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98615#M25384</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-07-17T18:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Load Time vs Event Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98616#M25385</link>
      <description>&lt;P&gt;Oh good. That makes it easier. Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 19:40:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98616#M25385</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2013-07-17T19:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Load Time vs Event Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98617#M25386</link>
      <description>&lt;P&gt;I added _indextime to a multiple indexes shows nothing.. how do you get the epoch time to show up?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2016 17:38:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Load-Time-vs-Event-Time/m-p/98617#M25386</guid>
      <dc:creator>mendesjo</dc:creator>
      <dc:date>2016-06-21T17:38:52Z</dc:date>
    </item>
  </channel>
</rss>

