<?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 Permanent Field extraction in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Permanent-Field-extraction/m-p/710609#M240004</link>
    <description>&lt;P&gt;Trying to get permanent field extraction for a field. Tried to use field extraction tabs in fields given regex there but getting failed. Giving the same in search working. I don't know why.&lt;/P&gt;&lt;P&gt;Below is the event:&lt;/P&gt;&lt;P&gt;host: juniper-uat.systems.fed&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Connection:&lt;/SPAN&gt; &lt;SPAN class=""&gt;keep-alive&lt;/SPAN&gt; &lt;SPAN class=""&gt;sec-ch-ua-platform:&lt;/SPAN&gt;&lt;SPAN&gt; ""&lt;/SPAN&gt;&lt;SPAN class=""&gt;Windows&lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;X-Requested-With:&lt;/SPAN&gt; &lt;SPAN class=""&gt;XMLHttpRequest&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Need to extract the host value as 'fqdn' permanently.&lt;/P&gt;&lt;P&gt;given this regex -&amp;nbsp;Host:\s(?&amp;lt;fqdn&amp;gt;(.+))\n in field extraction as attached below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Karthikeya_0-1738685468488.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/34366i2F75754620390983/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Karthikeya_0-1738685468488.png" alt="Karthikeya_0-1738685468488.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Karthikeya_0-1738685468488.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But it is extracting whole event value starting from fqdn value. Not extracting correctly.&lt;/P&gt;&lt;P&gt;Please help me in this regard.&lt;/P&gt;</description>
    <pubDate>Tue, 04 Feb 2025 16:15:44 GMT</pubDate>
    <dc:creator>Karthikeya</dc:creator>
    <dc:date>2025-02-04T16:15:44Z</dc:date>
    <item>
      <title>Permanent Field extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Permanent-Field-extraction/m-p/710609#M240004</link>
      <description>&lt;P&gt;Trying to get permanent field extraction for a field. Tried to use field extraction tabs in fields given regex there but getting failed. Giving the same in search working. I don't know why.&lt;/P&gt;&lt;P&gt;Below is the event:&lt;/P&gt;&lt;P&gt;host: juniper-uat.systems.fed&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Connection:&lt;/SPAN&gt; &lt;SPAN class=""&gt;keep-alive&lt;/SPAN&gt; &lt;SPAN class=""&gt;sec-ch-ua-platform:&lt;/SPAN&gt;&lt;SPAN&gt; ""&lt;/SPAN&gt;&lt;SPAN class=""&gt;Windows&lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;X-Requested-With:&lt;/SPAN&gt; &lt;SPAN class=""&gt;XMLHttpRequest&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Need to extract the host value as 'fqdn' permanently.&lt;/P&gt;&lt;P&gt;given this regex -&amp;nbsp;Host:\s(?&amp;lt;fqdn&amp;gt;(.+))\n in field extraction as attached below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Karthikeya_0-1738685468488.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/34366i2F75754620390983/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Karthikeya_0-1738685468488.png" alt="Karthikeya_0-1738685468488.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Karthikeya_0-1738685468488.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But it is extracting whole event value starting from fqdn value. Not extracting correctly.&lt;/P&gt;&lt;P&gt;Please help me in this regard.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 16:15:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Permanent-Field-extraction/m-p/710609#M240004</guid>
      <dc:creator>Karthikeya</dc:creator>
      <dc:date>2025-02-04T16:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Permanent Field extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Permanent-Field-extraction/m-p/710610#M240005</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/273888"&gt;@Karthikeya&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I could be more detailed, if you can share the full event, anyway, you have to create a regex like the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "host: (?&amp;lt;host&amp;gt;[^\s\n]+)"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 16:10:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Permanent-Field-extraction/m-p/710610#M240005</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-02-04T16:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Permanent Field extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Permanent-Field-extraction/m-p/710624#M240009</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/273888"&gt;@Karthikeya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It could be access permission to the extracted field. Go to the menu Settings &amp;gt; Fields, click on Field Extractions, and check if the permission for your field is correct. To ensure access for all users, set the app permissions to global and the Role permissions to Read for Everyone.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 18:51:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Permanent-Field-extraction/m-p/710624#M240009</guid>
      <dc:creator>luizlimapg</dc:creator>
      <dc:date>2025-02-04T18:51:44Z</dc:date>
    </item>
  </channel>
</rss>

