<?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 is not working in Splunk. in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329575#M98085</link>
    <description>&lt;P&gt;Hi Rich,&lt;/P&gt;

&lt;P&gt;1.0;20170302T12:56:26.2817264Z;QueryTables;Success;200;6;6;authenticated;&lt;STRONG&gt;StorageAccountName&lt;/STRONG&gt;;table;"&lt;A href="https://StorageAccountName.table.core.windows.net:443/Tables%22;%22/%22;xxxxx;0;**IP"&gt;https://StorageAccountName.table.core.windows.net:443/Tables";"/";xxxxx;0;**IP&lt;/A&gt; Address**:62615;2015-07-08;532;0;250;12;0;;;;;;"Azure-Storage/0.32.0 (Python CPython 2.7.11; Windows 2012ServerR2)";;"xxxxxx&lt;/P&gt;

&lt;P&gt;I want to parse StorageAccountName &amp;amp; IP Address in the log.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2017 13:12:03 GMT</pubDate>
    <dc:creator>skukreja</dc:creator>
    <dc:date>2017-03-02T13:12:03Z</dc:date>
    <item>
      <title>Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329573#M98083</link>
      <description>&lt;P&gt;I am working on MS Azure logs and some of the fields are not getting parsed so I tried to use the field extraction in splunk however I am not getting those field parsed after doing all the steps involved in field extraction.&lt;/P&gt;

&lt;P&gt;I have tried both regex and delimiter based field extraction. &lt;/P&gt;

&lt;P&gt;Appreciate any kind of help on this issue.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 11:59:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329573#M98083</guid>
      <dc:creator>skukreja</dc:creator>
      <dc:date>2017-03-02T11:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329574#M98084</link>
      <description>&lt;P&gt;Kindly post a sample of the log entries you wish to parse.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 12:39:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329574#M98084</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2017-03-02T12:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329575#M98085</link>
      <description>&lt;P&gt;Hi Rich,&lt;/P&gt;

&lt;P&gt;1.0;20170302T12:56:26.2817264Z;QueryTables;Success;200;6;6;authenticated;&lt;STRONG&gt;StorageAccountName&lt;/STRONG&gt;;table;"&lt;A href="https://StorageAccountName.table.core.windows.net:443/Tables%22;%22/%22;xxxxx;0;**IP"&gt;https://StorageAccountName.table.core.windows.net:443/Tables";"/";xxxxx;0;**IP&lt;/A&gt; Address**:62615;2015-07-08;532;0;250;12;0;;;;;;"Azure-Storage/0.32.0 (Python CPython 2.7.11; Windows 2012ServerR2)";;"xxxxxx&lt;/P&gt;

&lt;P&gt;I want to parse StorageAccountName &amp;amp; IP Address in the log.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 13:12:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329575#M98085</guid>
      <dc:creator>skukreja</dc:creator>
      <dc:date>2017-03-02T13:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329576#M98086</link>
      <description>&lt;P&gt;This regex string should extract the two fields you mentioned.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?:[^;]+;){8}(?&amp;lt;storAcctName&amp;gt;[^;]+);(?:[^;]+;){5}(?&amp;lt;ipAddress&amp;gt;[^;]+);
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you want the IP address without port number, use this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?:[^;]+;){8}(?&amp;lt;storAcctName&amp;gt;[^;]+);(?:[^;]+;){5}(?&amp;lt;ipAddress&amp;gt;[^:]+):
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Mar 2017 13:35:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329576#M98086</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2017-03-02T13:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329577#M98087</link>
      <description>&lt;P&gt;Hi Rich,&lt;/P&gt;

&lt;P&gt;All the fields are getting parsed in the extract field wizard but still not getting them in search.&lt;/P&gt;

&lt;P&gt;Sumit Kukreja&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 14:02:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329577#M98087</guid>
      <dc:creator>skukreja</dc:creator>
      <dc:date>2017-03-02T14:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329578#M98088</link>
      <description>&lt;P&gt;Hi Rich,&lt;/P&gt;

&lt;P&gt;All the fields are getting parsed in the field extractor wizard however they are not showing up in search.&lt;/P&gt;

&lt;P&gt;Sumit Kukreja&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 14:06:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329578#M98088</guid>
      <dc:creator>skukreja</dc:creator>
      <dc:date>2017-03-02T14:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329579#M98089</link>
      <description>&lt;P&gt;Whats exact generated  _raw event , past it here &lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 19:40:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329579#M98089</guid>
      <dc:creator>svemurilv</dc:creator>
      <dc:date>2017-03-02T19:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329580#M98090</link>
      <description>&lt;P&gt;Did you save the results of the extract field wizard?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 22:21:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329580#M98090</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2017-03-02T22:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329581#M98091</link>
      <description>&lt;P&gt;Yes I do save them and I can see them in filed extraction tab.&lt;/P&gt;

&lt;P&gt;mscs:storage:blob : EXTRACT-Method,Status,StorageAccount,IPAddress&lt;/P&gt;

&lt;P&gt;My save field extraction name.&lt;/P&gt;

&lt;P&gt;Sumit Kukreja&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 09:08:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329581#M98091</guid>
      <dc:creator>skukreja</dc:creator>
      <dc:date>2017-03-03T09:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Field Extraction is not working in Splunk.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329582#M98092</link>
      <description>&lt;P&gt;I can't explain why it's not working.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 13:11:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction-is-not-working-in-Splunk/m-p/329582#M98092</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2017-03-03T13:11:15Z</dc:date>
    </item>
  </channel>
</rss>

