<?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: Search Head - props.conf and transforms.conf not taking into effect in apps directory in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187119#M37421</link>
    <description>&lt;P&gt;Thanks woodcock.&lt;/P&gt;

&lt;P&gt;Currently I am having some permission issues (write) in updating default.meta file but I checked the app permissions through splunkweb and see that App1 has read/write permissions to everyone. Although not ideal, I believe the corresponding meta should like above except that access = read:[&lt;EM&gt;],write:[&lt;/EM&gt;]&lt;/P&gt;

&lt;P&gt;But even after making the change, the search extracts only one or two fields &amp;amp; populates them with rest of the fields thus ending up with garbage data.&lt;/P&gt;

&lt;P&gt;Do I need to make any other changes to permissions?&lt;/P&gt;</description>
    <pubDate>Wed, 13 May 2015 05:30:37 GMT</pubDate>
    <dc:creator>shailesh030</dc:creator>
    <dc:date>2015-05-13T05:30:37Z</dc:date>
    <item>
      <title>Search Head - props.conf and transforms.conf not taking into effect in apps directory</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187117#M37419</link>
      <description>&lt;P&gt;I have a universal forwarder forwarding key-value-delimited log events to an indexer. I have created an app on the search head to extract the fields using props.conf and transforms.conf. These configuration files are in the /$SPLUNK_HOME/etc/apps/App1/local directory but for some reason these configuration files are not taking into effect. These same files when moved to /$SPLUNK_HOME/etc/system/local results in fields being extracted and available for search on the search head. &lt;/P&gt;

&lt;P&gt;1) There were no other props.conf and transforms.conf present in etc/system/local prior to the move.&lt;BR /&gt;
2) btool cmd shows the props and transforms were picked up from apps/local directory.&lt;BR /&gt;
3) Both files have all the permissions.&lt;BR /&gt;
4) Configuring props.conf  (for timezone etc.) in an app context on the indexer works without issues &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Content of props.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    [1234567_abcd_dplogskv]
    REPORT-parse_dp_kv = dpkvlog
    KV_MODE = none
    pulldown_type = 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Content of transforms.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[dpkvlog]
DELIMS = "~", "="
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any help will be highly appreciated&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:53:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187117#M37419</guid>
      <dc:creator>shailesh030</dc:creator>
      <dc:date>2020-09-28T19:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Search Head - props.conf and transforms.conf not taking into effect in apps directory</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187118#M37420</link>
      <description>&lt;P&gt;You are probably locked into your app's scope and searching outside of it.  To give your Knowledge Objects global scope, create this &lt;CODE&gt;$SPLUNK_HOME/etc/apps/app1/metadata/default.meta&lt;/CODE&gt; file:&lt;/P&gt;

&lt;H3&gt;Application-level permissions&lt;/H3&gt;

&lt;P&gt;[]&lt;BR /&gt;
access = read : [ admin ], write : [ admin ]&lt;/P&gt;

&lt;H3&gt;EVENT TYPES&lt;/H3&gt;

&lt;P&gt;[eventtypes]&lt;BR /&gt;
export = system&lt;/P&gt;

&lt;H3&gt;PROPS&lt;/H3&gt;

&lt;P&gt;[props]&lt;BR /&gt;
export = system&lt;/P&gt;

&lt;H3&gt;TRANSFORMS&lt;/H3&gt;

&lt;P&gt;[transforms]&lt;BR /&gt;
export = system&lt;/P&gt;

&lt;H3&gt;VIEWSTATES: even normal users should be able to create shared viewstates&lt;/H3&gt;

&lt;P&gt;[viewstates]&lt;BR /&gt;
access = read : [ * ], write : [ * ]&lt;/P&gt;

&lt;H3&gt;LOOKUPS&lt;/H3&gt;

&lt;P&gt;[lookups]&lt;BR /&gt;
export = system&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 05:07:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187118#M37420</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-13T05:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Search Head - props.conf and transforms.conf not taking into effect in apps directory</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187119#M37421</link>
      <description>&lt;P&gt;Thanks woodcock.&lt;/P&gt;

&lt;P&gt;Currently I am having some permission issues (write) in updating default.meta file but I checked the app permissions through splunkweb and see that App1 has read/write permissions to everyone. Although not ideal, I believe the corresponding meta should like above except that access = read:[&lt;EM&gt;],write:[&lt;/EM&gt;]&lt;/P&gt;

&lt;P&gt;But even after making the change, the search extracts only one or two fields &amp;amp; populates them with rest of the fields thus ending up with garbage data.&lt;/P&gt;

&lt;P&gt;Do I need to make any other changes to permissions?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 05:30:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187119#M37421</guid>
      <dc:creator>shailesh030</dc:creator>
      <dc:date>2015-05-13T05:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Search Head - props.conf and transforms.conf not taking into effect in apps directory</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187120#M37422</link>
      <description>&lt;P&gt;If it works in &lt;CODE&gt;$SPLUNK_HOME/etc/system/local&lt;/CODE&gt; then just copy the entire &lt;CODE&gt;metadata&lt;/CODE&gt; directory's contents from there into your app.&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 06:40:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187120#M37422</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-13T06:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Search Head - props.conf and transforms.conf not taking into effect in apps directory</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187121#M37423</link>
      <description>&lt;P&gt;I tried that as well. I took the meta directory from system/metadata along with is default.meta and copied to the /etc/apps/app1 but it still doesn't extract the fields. As soon as move props.conf and transforms.conf back to /system/local it starts working. As you mentioned it certainly has something to do with scope &amp;amp; permissions but not able to figure out what that is. Any other things I can try? Below is the content of system/metadata/default.meta&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;# System permissions

[]
access = read : [ * ], write : [ admin ]

### VIEWSTATES: even normal users should be able to create shared viewstates

[viewstates]
access = read : [ * ], write : [ * ]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 19:39:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187121#M37423</guid>
      <dc:creator>shailesh030</dc:creator>
      <dc:date>2015-05-13T19:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Search Head - props.conf and transforms.conf not taking into effect in apps directory</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187122#M37424</link>
      <description>&lt;P&gt;Hi shailesh030&lt;BR /&gt;
Were you able to solve this issue?&lt;BR /&gt;
I have the very same Problem.&lt;BR /&gt;
Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:08:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-Head-props-conf-and-transforms-conf-not-taking-into/m-p/187122#M37424</guid>
      <dc:creator>MarkusAugstburg</dc:creator>
      <dc:date>2020-04-24T17:08:59Z</dc:date>
    </item>
  </channel>
</rss>

