<?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 index TAB delimited files? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10932#M625</link>
    <description>&lt;P&gt;perhaps you mean&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DELIMS=\t
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 28 Jul 2015 12:04:01 GMT</pubDate>
    <dc:creator>landen99</dc:creator>
    <dc:date>2015-07-28T12:04:01Z</dc:date>
    <item>
      <title>How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10924#M617</link>
      <description>&lt;P&gt;I am looking to read into SPLUNK a tab delimited file. But most of what I see is key based Field Extractions (, space, etc.)&lt;/P&gt;

&lt;P&gt;Is there an example of how this might be done with TAB?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2010 23:58:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10924#M617</guid>
      <dc:creator>Alan_Bradley</dc:creator>
      <dc:date>2010-04-05T23:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10925#M618</link>
      <description>&lt;P&gt;You should be able to make it work as with CSV files:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[mysourcetype]
DELIMS = "\t"
FIELDS = field1,f2,fieldthree
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but specifying &lt;CODE&gt;\t&lt;/CODE&gt; instead of &lt;CODE&gt;,&lt;/CODE&gt; as the delimiter.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2010 01:11:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10925#M618</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2010-04-06T01:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10926#M619</link>
      <description>&lt;P&gt;where can i configutre this?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2011 00:56:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10926#M619</guid>
      <dc:creator>camaney</dc:creator>
      <dc:date>2011-10-21T00:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10927#M620</link>
      <description>&lt;P&gt;According to &lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.4/Knowledge/Createandmaintainsearch-timefieldextractionsthroughconfigurationfiles#Create_advanced_search-time_field_extractions_with_field_transforms"&gt;this&lt;/A&gt;, you configure this in transforms.conf BUT you also need a basic entry in props.conf that connects to the transform, e.g.:&lt;BR /&gt;
include this in props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[My Source Type 1]
NO_BINARY_CHECK = 1
SHOULD_LINEMERGE = false
pulldown_type = 1
REPORT-myname = mydelim
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And include this in transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[mydelim]
DELIMS = "\t"
FIELDS = "TimeStamp","Colour","First Name","Shape"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Both files should reside in &lt;BR /&gt;
$SPLUNK_HOME/etc/system/local/&lt;BR /&gt;&lt;BR /&gt;
e.g. C:\Program Files\Splunk\etc\system\local&lt;/P&gt;

&lt;P&gt;I have described this exact process in more detail &lt;A href="http://splunk-base.splunk.com/answers/63750/cant-extract-fields-names-from-tab-delimited-source"&gt;here&lt;/A&gt; - including the surprisingly difficult task of seeing the new field names once you have extracted them!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2012 23:57:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10927#M620</guid>
      <dc:creator>nosignal</dc:creator>
      <dc:date>2012-10-29T23:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10928#M621</link>
      <description>&lt;P&gt;nosignal, i tested your sample and in my case perfect worked. Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2013 16:33:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10928#M621</guid>
      <dc:creator>rafamss</dc:creator>
      <dc:date>2013-08-08T16:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10929#M622</link>
      <description>&lt;P&gt;Hi nosignal,&lt;/P&gt;

&lt;P&gt;I included above things in props.conf and transforms.conf. But in preview of my log file I am getting the output like this.&lt;/P&gt;

&lt;P&gt;Timestamp   Event&lt;BR /&gt;
1   11/19/13 6:46:50.000 PM "Time"  "Temparature"&lt;/P&gt;

&lt;P&gt;2   11/12/13 4:23:52.051 PM "11/12/2013 16:23:52.051"   "+50"&lt;/P&gt;

&lt;P&gt;3   11/12/13 4:23:53.051 PM "11/12/2013 16:23:53.051"   "-40"&lt;/P&gt;

&lt;P&gt;4   11/12/13 4:23:54.051 PM "11/12/2013 16:23:54.051"   "-60"&lt;/P&gt;

&lt;P&gt;5   11/12/13 4:23:55.051 PM "11/12/2013 16:23:55.051"   "+50"&lt;/P&gt;

&lt;P&gt;6   11/12/13 4:23:55.051 PM&lt;/P&gt;

&lt;P&gt;I did follow by querying this like you said ..|stats dc(*) as *. But no use. Can you please help me in this regard?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Tiru&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2013 04:25:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10929#M622</guid>
      <dc:creator>tirusplunk</dc:creator>
      <dc:date>2013-11-20T04:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10930#M623</link>
      <description>&lt;P&gt;Hi rafamss,&lt;/P&gt;

&lt;P&gt;I included above things in props.conf and transforms.conf. But in preview of my log file I am getting the output like this.&lt;/P&gt;

&lt;P&gt;Timestamp Event 1 11/19/13 6:46:50.000 PM "Time" "Temparature"&lt;/P&gt;

&lt;P&gt;2 11/12/13 4:23:52.051 PM "11/12/2013 16:23:52.051" "+50"&lt;/P&gt;

&lt;P&gt;3 11/12/13 4:23:53.051 PM "11/12/2013 16:23:53.051" "-40"&lt;/P&gt;

&lt;P&gt;4 11/12/13 4:23:54.051 PM "11/12/2013 16:23:54.051" "-60"&lt;/P&gt;

&lt;P&gt;5 11/12/13 4:23:55.051 PM "11/12/2013 16:23:55.051" "+50"&lt;/P&gt;

&lt;P&gt;6 11/12/13 4:23:55.051 PM&lt;/P&gt;

&lt;P&gt;I did follow by querying this like you said ..|stats dc(*) as *. But no use. Can you please help me in this regard?&lt;/P&gt;

&lt;P&gt;Thanks, Tiru&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2013 04:27:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10930#M623</guid>
      <dc:creator>tirusplunk</dc:creator>
      <dc:date>2013-11-20T04:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10931#M624</link>
      <description>&lt;P&gt;Hi Tiru,&lt;/P&gt;

&lt;P&gt;Try this way: sourcetype[] | timechart count by temperature&lt;/P&gt;

&lt;P&gt;Verify if  works!&lt;/P&gt;

&lt;P&gt;Thanks, Rafael&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2013 17:39:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10931#M624</guid>
      <dc:creator>rafamss</dc:creator>
      <dc:date>2013-11-22T17:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do index TAB delimited files?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10932#M625</link>
      <description>&lt;P&gt;perhaps you mean&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DELIMS=\t
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Jul 2015 12:04:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-index-TAB-delimited-files/m-p/10932#M625</guid>
      <dc:creator>landen99</dc:creator>
      <dc:date>2015-07-28T12:04:01Z</dc:date>
    </item>
  </channel>
</rss>

