<?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 Issue with extracting multifield values due to props.conf transform.conf settings in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343313#M101659</link>
    <description>&lt;P&gt;Hi Experts, &lt;/P&gt;

&lt;P&gt;I am trying to extract something like below &lt;BR /&gt;
type=type1,type3&lt;/P&gt;

&lt;P&gt;My Data&lt;BR /&gt;
event1.epochtime=1282182111 type=type1 value=value1 type=type3 value=value3&lt;/P&gt;

&lt;P&gt;props.conf&lt;BR /&gt;
[test]&lt;BR /&gt;
REPORT-type = mv-type&lt;/P&gt;

&lt;P&gt;transform.conf&lt;BR /&gt;
[mv-type]&lt;BR /&gt;
REGEX = type=(?type\s+)&lt;/P&gt;

&lt;P&gt;MV_ADD = true&lt;/P&gt;

&lt;P&gt;Now when I restart after above , I still see only one value in type, so result is type=type1 only . May I know what I am doing wrong ?&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
VG&lt;/P&gt;</description>
    <pubDate>Fri, 03 Nov 2017 18:36:27 GMT</pubDate>
    <dc:creator>vikas_gopal</dc:creator>
    <dc:date>2017-11-03T18:36:27Z</dc:date>
    <item>
      <title>Issue with extracting multifield values due to props.conf transform.conf settings</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343313#M101659</link>
      <description>&lt;P&gt;Hi Experts, &lt;/P&gt;

&lt;P&gt;I am trying to extract something like below &lt;BR /&gt;
type=type1,type3&lt;/P&gt;

&lt;P&gt;My Data&lt;BR /&gt;
event1.epochtime=1282182111 type=type1 value=value1 type=type3 value=value3&lt;/P&gt;

&lt;P&gt;props.conf&lt;BR /&gt;
[test]&lt;BR /&gt;
REPORT-type = mv-type&lt;/P&gt;

&lt;P&gt;transform.conf&lt;BR /&gt;
[mv-type]&lt;BR /&gt;
REGEX = type=(?type\s+)&lt;/P&gt;

&lt;P&gt;MV_ADD = true&lt;/P&gt;

&lt;P&gt;Now when I restart after above , I still see only one value in type, so result is type=type1 only . May I know what I am doing wrong ?&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
VG&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 18:36:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343313#M101659</guid>
      <dc:creator>vikas_gopal</dc:creator>
      <dc:date>2017-11-03T18:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with extracting multifield values due to props.conf transform.conf settings</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343314#M101660</link>
      <description>&lt;P&gt;I am taking help from below doc and using same example from here &lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0/Knowledge/Exampleconfigurationsusingfieldtransforms"&gt;http://docs.splunk.com/Documentation/Splunk/6.0/Knowledge/Exampleconfigurationsusingfieldtransforms&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 18:46:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343314#M101660</guid>
      <dc:creator>vikas_gopal</dc:creator>
      <dc:date>2017-11-03T18:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with extracting multifield values due to props.conf transform.conf settings</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343315#M101661</link>
      <description>&lt;P&gt;Use captital &lt;CODE&gt;S&lt;/CODE&gt; in your REGEX instead of small case. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;REGEX = type=(?&amp;lt;type&amp;gt;\S+)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;See the comment from @Daljeanis at the bottom on the documentation.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 18:54:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343315#M101661</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-03T18:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with extracting multifield values due to props.conf transform.conf settings</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343316#M101662</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;Can you please try below configuration?&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[test]
REPORT-type = mv-type
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transform.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[mv-type]
REGEX = type=(?&amp;lt;type&amp;gt;[^\s+]*)
MV_ADD = true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 18:55:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343316#M101662</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2017-11-03T18:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with extracting multifield values due to props.conf transform.conf settings</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343317#M101663</link>
      <description>&lt;P&gt;Thanks mate I should have seen this before ..lolz it works&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 19:02:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343317#M101663</guid>
      <dc:creator>vikas_gopal</dc:creator>
      <dc:date>2017-11-03T19:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with extracting multifield values due to props.conf transform.conf settings</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343318#M101664</link>
      <description>&lt;P&gt;Well it works , I should have seen the comment which was mentioned at the below of the document . So it was the regex problem . Thanks for your response man &lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 19:03:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Issue-with-extracting-multifield-values-due-to-props-conf/m-p/343318#M101664</guid>
      <dc:creator>vikas_gopal</dc:creator>
      <dc:date>2017-11-03T19:03:03Z</dc:date>
    </item>
  </channel>
</rss>

