<?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 do I determine when an event was indexed? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10848#M434</link>
    <description>&lt;P&gt;I have a question. What is the easiest way to export this data from the command line? I would like the raw event with the value idxtime. &lt;/P&gt;</description>
    <pubDate>Sat, 09 Oct 2010 00:01:12 GMT</pubDate>
    <dc:creator>lisaac</dc:creator>
    <dc:date>2010-10-09T00:01:12Z</dc:date>
    <item>
      <title>How do I determine when an event was indexed?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10843#M429</link>
      <description>&lt;P&gt;I'm trying to troubleshoot some issues with indexing.  It would be great to be able to find out when an event or events were indexed.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2010 02:38:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10843#M429</guid>
      <dc:creator>the_wolverine</dc:creator>
      <dc:date>2010-04-02T02:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine when an event was indexed?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10844#M430</link>
      <description>&lt;P&gt;Since Splunk 4.0, the indexing machine will add an index time field called _indextime to events as they are written to disk. To see these, run a search like the following and add "indextime" to the selected fields:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
  &lt;P&gt;... | eval indextime = _indextime&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;To calculate lag from the timestamp of the event through indexing, search like:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
  &lt;P&gt;... | eval lag = _indextime - _time&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 02 Apr 2010 02:46:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10844#M430</guid>
      <dc:creator>Stephen_Sorkin</dc:creator>
      <dc:date>2010-04-02T02:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine when an event was indexed?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10845#M431</link>
      <description>&lt;P&gt;Here's how I would do it: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;searchterms | eval idxtime=_indextime | convert ctime(idxtime) 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The added step of converting using ctime changes the epochtime (of _indextime) to human readable ascii time, like "03/31/2010 20:30:00".&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2010 04:34:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10845#M431</guid>
      <dc:creator>the_wolverine</dc:creator>
      <dc:date>2010-04-02T04:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine when an event was indexed?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10846#M432</link>
      <description>&lt;P&gt;one step: &lt;CODE&gt;mysearchterms | convert ctime(_indextime) as idxtime&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2010 10:36:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10846#M432</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2010-04-02T10:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine when an event was indexed?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10847#M433</link>
      <description>&lt;P&gt;you rock.......&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2010 13:01:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10847#M433</guid>
      <dc:creator>the_wolverine</dc:creator>
      <dc:date>2010-04-02T13:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine when an event was indexed?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10848#M434</link>
      <description>&lt;P&gt;I have a question. What is the easiest way to export this data from the command line? I would like the raw event with the value idxtime. &lt;/P&gt;</description>
      <pubDate>Sat, 09 Oct 2010 00:01:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-determine-when-an-event-was-indexed/m-p/10848#M434</guid>
      <dc:creator>lisaac</dc:creator>
      <dc:date>2010-10-09T00:01:12Z</dc:date>
    </item>
  </channel>
</rss>

