<?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: Splunk dont show fields after parsed. why? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156640#M44063</link>
    <description>&lt;P&gt;Yes, as long as the REPORT-xxx in props.conf references the stanza name in transforms.conf.&lt;/P&gt;</description>
    <pubDate>Tue, 26 Nov 2013 15:17:42 GMT</pubDate>
    <dc:creator>_d_</dc:creator>
    <dc:date>2013-11-26T15:17:42Z</dc:date>
    <item>
      <title>Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156634#M44057</link>
      <description>&lt;H2&gt;Sample Log File&lt;/H2&gt;

&lt;P&gt;2013-10-31|2013-10-31 00:00:00|serv1|ws1|Mozilla|p1=1,p2=2,p3=3|hash1||method1|id||2.01&lt;/P&gt;

&lt;P&gt;2013-11-01|2013-10-31 00:00:00|serv1|ws2|Chrome|p1=55,p2=432,p3=3|hash2||method2|id||3.31&lt;/P&gt;

&lt;P&gt;2013-10-03|2013-10-31 00:00:00|serv1|ws3|Explorer|p1=34,p2=434434,p3=555555|hash3||method3|id||4.41&lt;/P&gt;

&lt;H2&gt;Question&lt;/H2&gt;

&lt;P&gt;The log fields are fixed and there is adlimiter '|' between them&lt;/P&gt;

&lt;P&gt;I want that the splunk automaticlly parse data rows into fileds&lt;BR /&gt;
I add the prop.conf these attributes&lt;/P&gt;

&lt;P&gt;DELIMS = "|"&lt;/P&gt;

&lt;P&gt;FIELDS = "date"|"datetime"|"service"|"ws"|"browser"|"params"|"gui"|"empty"|"method"|"id"|"status"|"ver"&lt;/P&gt;

&lt;P&gt;Why dont I see those fields on the Selected/Interesting Fields list?&lt;BR /&gt;
what am i missing?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 13:21:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156634#M44057</guid>
      <dc:creator>shayhk</dc:creator>
      <dc:date>2013-11-26T13:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156635#M44058</link>
      <description>&lt;P&gt;Those attributes belong in a transforms.conf instead. &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;props.conf&lt;BR /&gt;
[my_sourcetype]&lt;BR /&gt;
REPORT-my_fields = my_fields&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;transforms.conf&lt;BR /&gt;
[my_fields]&lt;BR /&gt;
DELIMS = "|"&lt;BR /&gt;
FIELDS = "date","datetime","service","ws","browser","params","gui","empty","method","id","status","ver"&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;EDIT: You need commas between field names.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 13:37:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156635#M44058</guid>
      <dc:creator>_d_</dc:creator>
      <dc:date>2013-11-26T13:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156636#M44059</link>
      <description>&lt;P&gt;The DELIMS and FIELDS belong in transforms.conf not props.conf.  Also, in FIELDS remove the quotes and delimiters - use a space separated list of fields.&lt;/P&gt;

&lt;P&gt;FIELDS = date datetime service ws browser params gui empty method id status ver&lt;/P&gt;

&lt;P&gt;You will need an entry in props.conf to point the source or sourcetype to the transform stanza like this:&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;P&gt;[yoursourcetype]&lt;BR /&gt;
REPORT-yourfieldlist = fieldlist&lt;/P&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;P&gt;[fieldlist]&lt;BR /&gt;
DELIMS = "|"&lt;BR /&gt;&lt;BR /&gt;
FIELDS = date datetime service ws browser params gui empty method id status ver&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 13:42:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156636#M44059</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-11-26T13:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156637#M44060</link>
      <description>&lt;P&gt;i dont have a transforms.conf file.&lt;BR /&gt;
only props.conf.&lt;BR /&gt;
how can i do it from the SplunkWeb Gui?&lt;BR /&gt;
thanks&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 14:15:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156637#M44060</guid>
      <dc:creator>shayhk</dc:creator>
      <dc:date>2013-11-26T14:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156638#M44061</link>
      <description>&lt;P&gt;You can't.&lt;BR /&gt;
You need to create the file on the indexer at:&lt;BR /&gt;
&lt;CODE&gt;splunk\etc\system\local\transforms.conf&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 14:26:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156638#M44061</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-11-26T14:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156639#M44062</link>
      <description>&lt;P&gt;all i need to do is to create the file and define it like you did?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 15:15:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156639#M44062</guid>
      <dc:creator>shayhk</dc:creator>
      <dc:date>2013-11-26T15:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156640#M44063</link>
      <description>&lt;P&gt;Yes, as long as the REPORT-xxx in props.conf references the stanza name in transforms.conf.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 15:17:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156640#M44063</guid>
      <dc:creator>_d_</dc:creator>
      <dc:date>2013-11-26T15:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156641#M44064</link>
      <description>&lt;P&gt;Don't forget to restart splunkd when you're done with the file.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 16:33:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156641#M44064</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-11-26T16:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156642#M44065</link>
      <description>&lt;P&gt;I did all these thing and still, the fileds i asked for are are not showen in the selected\Interesting fields bar.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 11:32:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156642#M44065</guid>
      <dc:creator>shayhk</dc:creator>
      <dc:date>2013-11-27T11:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156643#M44066</link>
      <description>&lt;P&gt;it's not working.&lt;BR /&gt;
i changed the props.conf + transforms.conf&lt;BR /&gt;
and restarted the splunk service.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 11:34:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156643#M44066</guid>
      <dc:creator>shayhk</dc:creator>
      <dc:date>2013-11-27T11:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk dont show fields after parsed. why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156644#M44067</link>
      <description>&lt;P&gt;FIELDS = date datetime service ws browser params gui empty method id status ver&lt;BR /&gt;
or&lt;/P&gt;

&lt;P&gt;FIELDS = "date"|"datetime"|"service"|"ws"|"browser"|"params"|"gui"|"empty"|"method"|"id"|"status"|"ver"&lt;/P&gt;

&lt;P&gt;????&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 11:37:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-dont-show-fields-after-parsed-why/m-p/156644#M44067</guid>
      <dc:creator>shayhk</dc:creator>
      <dc:date>2013-11-27T11:37:18Z</dc:date>
    </item>
  </channel>
</rss>

