<?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 Regular expression in props.conf in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74222#M15172</link>
    <description>&lt;P&gt;I have an output&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;lifesize_cdr: INFO 24,16,8CC 9-107-Photon,172.20.129.30,,,,2012-02-07 16:22:21,2012-02-07 16:22:21,00:00:00,In,PSTN,None,0,0,,,,,,,No,No,None,Normal,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,1295,vtc-9-108-Tachyon.8cc
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I have matched 1295 by this in props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-lsCDR_lifesize_name= (?i)lifesize_cdr: INFO \d+,\d+(,.*?){46},(?P&amp;lt;lsCDR_lifesize_name&amp;gt;.*?),
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but for vtc-9-108-Tachyon.8cc both (below) are not matching &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-lsCDR_lifesize_name2= (?i)lifesize_cdr: INFO \d+,\d+(,.*?){47},(?P&amp;lt;lsCDR_lifesize_name2&amp;gt;.*?),
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-lsCDR_lifesize_name3= (?i)lifesize_cdr: INFO \d+,\d+(,.*?){47},(?P&amp;lt;lsCDR_lifesize_name3&amp;gt;)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;can you make this ?&lt;/P&gt;</description>
    <pubDate>Sat, 18 Feb 2012 11:59:52 GMT</pubDate>
    <dc:creator>kml_uvce</dc:creator>
    <dc:date>2012-02-18T11:59:52Z</dc:date>
    <item>
      <title>Regular expression in props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74222#M15172</link>
      <description>&lt;P&gt;I have an output&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;lifesize_cdr: INFO 24,16,8CC 9-107-Photon,172.20.129.30,,,,2012-02-07 16:22:21,2012-02-07 16:22:21,00:00:00,In,PSTN,None,0,0,,,,,,,No,No,None,Normal,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,0,0.000,0.000,0,1295,vtc-9-108-Tachyon.8cc
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I have matched 1295 by this in props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-lsCDR_lifesize_name= (?i)lifesize_cdr: INFO \d+,\d+(,.*?){46},(?P&amp;lt;lsCDR_lifesize_name&amp;gt;.*?),
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but for vtc-9-108-Tachyon.8cc both (below) are not matching &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-lsCDR_lifesize_name2= (?i)lifesize_cdr: INFO \d+,\d+(,.*?){47},(?P&amp;lt;lsCDR_lifesize_name2&amp;gt;.*?),
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-lsCDR_lifesize_name3= (?i)lifesize_cdr: INFO \d+,\d+(,.*?){47},(?P&amp;lt;lsCDR_lifesize_name3&amp;gt;)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;can you make this ?&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2012 11:59:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74222#M15172</guid>
      <dc:creator>kml_uvce</dc:creator>
      <dc:date>2012-02-18T11:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regular expression in props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74223#M15173</link>
      <description>&lt;P&gt;How about this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-lsCDR_lifesize_name = lifesize_cdr:\s+INFO\s+.+,(?&amp;lt;lscdr_lifesize_name&amp;gt;[\w\.\-]+)$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 18 Feb 2012 18:19:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74223#M15173</guid>
      <dc:creator>Masa</dc:creator>
      <dc:date>2012-02-18T18:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regular expression in props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74224#M15174</link>
      <description>&lt;P&gt;Still This is not working with this reg ex as above&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2012 03:17:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74224#M15174</guid>
      <dc:creator>kml_uvce</dc:creator>
      <dc:date>2012-02-20T03:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regular expression in props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74225#M15175</link>
      <description>&lt;P&gt;I fixed the formatting so that backslash characters weren't improperly interpreted. Does the regex work better now?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2012 08:45:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74225#M15175</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-02-20T08:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regular expression in props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74226#M15176</link>
      <description>&lt;P&gt;Thanks Its working now...&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2012 09:52:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74226#M15176</guid>
      <dc:creator>kml_uvce</dc:creator>
      <dc:date>2012-02-20T09:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regular expression in props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74227#M15177</link>
      <description>&lt;P&gt;Thanks, Ayn!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2012 17:41:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regular-expression-in-props-conf/m-p/74227#M15177</guid>
      <dc:creator>Masa</dc:creator>
      <dc:date>2012-02-21T17:41:42Z</dc:date>
    </item>
  </channel>
</rss>

