<?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 how to extract from java.lang in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145020#M40381</link>
    <description>&lt;P&gt;My events look like this &lt;BR /&gt;
TYP=ERR,  TS1=1423574799157, TS2=1423574799157,  CMP=PUR,  EDESC=Unknown Host&lt;BR /&gt;
java.lang.Exception: Validation failed: input param is NULL&lt;BR /&gt;
    LogClient.java:39)&lt;/P&gt;

&lt;P&gt;How to extract from java.lang.Exception to the end of the event using regular expression&lt;/P&gt;</description>
    <pubDate>Mon, 16 Feb 2015 09:02:06 GMT</pubDate>
    <dc:creator>GreeshmaV</dc:creator>
    <dc:date>2015-02-16T09:02:06Z</dc:date>
    <item>
      <title>how to extract from java.lang</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145020#M40381</link>
      <description>&lt;P&gt;My events look like this &lt;BR /&gt;
TYP=ERR,  TS1=1423574799157, TS2=1423574799157,  CMP=PUR,  EDESC=Unknown Host&lt;BR /&gt;
java.lang.Exception: Validation failed: input param is NULL&lt;BR /&gt;
    LogClient.java:39)&lt;/P&gt;

&lt;P&gt;How to extract from java.lang.Exception to the end of the event using regular expression&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2015 09:02:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145020#M40381</guid>
      <dc:creator>GreeshmaV</dc:creator>
      <dc:date>2015-02-16T09:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to extract from java.lang</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145021#M40382</link>
      <description>&lt;P&gt;Is that the entire event?  I ask because of the mis-matched paren.  Is it a single-line or multi-line event?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2015 13:24:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145021#M40382</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2015-02-16T13:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to extract from java.lang</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145022#M40383</link>
      <description>&lt;P&gt;Off the top of my head something like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?i)java.lang.Exception:\s?&amp;lt;field&amp;gt;(.+)$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Feb 2015 02:30:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145022#M40383</guid>
      <dc:creator>thomrs</dc:creator>
      <dc:date>2015-02-17T02:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to extract from java.lang</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145023#M40384</link>
      <description>&lt;P&gt;its multiline event&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2015 05:08:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145023#M40384</guid>
      <dc:creator>GreeshmaV</dc:creator>
      <dc:date>2015-02-17T05:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to extract from java.lang</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145024#M40385</link>
      <description>&lt;P&gt;add (?ms) on the beginning - the s is dotall, and the m is multi-line.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; (?ms)java.lang.Exception:\s?&amp;lt;field&amp;gt;(.+)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:47:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145024#M40385</guid>
      <dc:creator>thomrs</dc:creator>
      <dc:date>2015-02-17T11:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to extract from java.lang</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145025#M40386</link>
      <description>&lt;P&gt;This works for my data (YMMV) at search time:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;"java.lang.Exception" | rex field=_raw "(?ms)java.lang.Exception(?P&amp;lt;exception&amp;gt;.+)"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Feb 2015 18:10:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-extract-from-java-lang/m-p/145025#M40386</guid>
      <dc:creator>cpetterborg</dc:creator>
      <dc:date>2015-02-24T18:10:32Z</dc:date>
    </item>
  </channel>
</rss>

