<?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: Field Extraction errors in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195004#M56243</link>
    <description>&lt;P&gt;Thanks that worked, I had to minor adjust but it worked.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Nov 2014 19:59:02 GMT</pubDate>
    <dc:creator>jclehmuth</dc:creator>
    <dc:date>2014-11-07T19:59:02Z</dc:date>
    <item>
      <title>Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195001#M56240</link>
      <description>&lt;P&gt;I keep receiving this error:&lt;BR /&gt;
The extraction failed. If you are extracting multiple fields, try removing one or more fields. Start with extractions that are embedded within longer text strings.&lt;/P&gt;

&lt;P&gt;I am trying to create a field extraction for Src_ip.  The IP I am trying to extract is at the end of the events, similar to below.&lt;/P&gt;

&lt;P&gt;Nov  7 00:19:22 10.0.33.210 2014-11- 7  5:19:20 Retina: Retina has found Low Severity audit Scheduler Service  Potential Security Hazard on ip 10.0.33.250.&lt;/P&gt;

&lt;P&gt;Nov  7 00:19:19 10.0.33.210 2014-11- 7  5:19:17 Retina: Retina has found Medium Severity audit Account Lockout Reset Time on ip 10.0.33.250.&lt;/P&gt;

&lt;P&gt;Nov  7 00:19:17 10.0.33.210 2014-11- 7  5:19:15 Retina: Retina has found Informational audit Microsoft Windows Share Allows Everyone Access on ip 10.0.33.250.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:13:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195001#M56240</guid>
      <dc:creator>jclehmuth</dc:creator>
      <dc:date>2014-11-07T19:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195002#M56241</link>
      <description>&lt;P&gt;I forgot to mention I'm using 6.2&lt;/P&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:14:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195002#M56241</guid>
      <dc:creator>jclehmuth</dc:creator>
      <dc:date>2014-11-07T19:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195003#M56242</link>
      <description>&lt;P&gt;Assuming it's always prefixed by "on ip" and at the end of the line and sometimes followed by that period, you can use this regex:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;on ip (?&amp;lt;src_ip&amp;gt;^\S+?)\.?$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:54:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195003#M56242</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-11-07T19:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195004#M56243</link>
      <description>&lt;P&gt;Thanks that worked, I had to minor adjust but it worked.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:59:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195004#M56243</guid>
      <dc:creator>jclehmuth</dc:creator>
      <dc:date>2014-11-07T19:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195005#M56244</link>
      <description>&lt;P&gt;martin_muller,&lt;/P&gt;

&lt;P&gt;Is there a guide on how to use the regex? &lt;BR /&gt;
I have a similar problem.&lt;/P&gt;

&lt;P&gt;My data&lt;BR /&gt;
... Version/7.0 Mobile/11B554a Safari/9537.53", client-ip="55.555.555.55", x-akamai-config-log-detail="true", te="chunked;q=1.0", connection="TE", akamai-origin-hop="2"...&lt;/P&gt;

&lt;P&gt;I'm trying to get the client-ip.&lt;/P&gt;

&lt;P&gt;I tried client-ip=" (?^\S+?)\"?$ but it doesnt work. Any help?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2015 02:01:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195005#M56244</guid>
      <dc:creator>dehtallyutedeh</dc:creator>
      <dc:date>2015-03-03T02:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195006#M56245</link>
      <description>&lt;P&gt;You have a self-describing log format using key=value pairs; Splunk should auto-extract all fields for you. Does it not?&lt;/P&gt;

&lt;P&gt;Your RegEx should probably read&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;client-ip=\"(?&amp;lt;client-ip&amp;gt;.*)\"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to at least answer your question.&lt;/P&gt;

&lt;P&gt;There are a bunch of RegEx learning/testing sources available on the interwebs. Google is your friend.  &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2015 05:06:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195006#M56245</guid>
      <dc:creator>s2_splunk</dc:creator>
      <dc:date>2015-03-03T05:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195007#M56246</link>
      <description>&lt;P&gt;No, Splunk didn't auto-extract it. Which I found very odd....&lt;/P&gt;

&lt;P&gt;I'll look up some more RegEx information to get this solution to work.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2015 18:52:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195007#M56246</guid>
      <dc:creator>dehtallyutedeh</dc:creator>
      <dc:date>2015-03-03T18:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction errors</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195008#M56247</link>
      <description>&lt;P&gt;I am also facing same issue in my case :&lt;BR /&gt;
Nov 7 00:19:19 10.0.33.210 2014-11- 7 5:19:17 Retina: Retina has found Medium Severity audit from IP 10.0.33.250. Account Lockout Reset Time.&lt;/P&gt;

&lt;P&gt;Nov 7 00:19:17 10.0.33.210 2014-11- 7 5:19:15 Retina: Retina has found Informational from IP 10.0.33.250. audit Microsoft Windows Share Allows Everyone Access &lt;/P&gt;

&lt;P&gt;I am using regrx like :&lt;BR /&gt;
from IP (?^\S+?).*&lt;BR /&gt;
I am getting IP string.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2017 10:28:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-errors/m-p/195008#M56247</guid>
      <dc:creator>mohan401</dc:creator>
      <dc:date>2017-07-17T10:28:46Z</dc:date>
    </item>
  </channel>
</rss>

