<?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: Multiple values field extraction with colon delimiter in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544218#M154156</link>
    <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;use the below regex.&lt;/P&gt;&lt;P&gt;| rex "=(?&amp;lt;error_code&amp;gt;\d{3}.\w+.\w+.\d{3})"&amp;nbsp; max_match=10&lt;/P&gt;</description>
    <pubDate>Wed, 17 Mar 2021 15:25:50 GMT</pubDate>
    <dc:creator>Vardhan</dc:creator>
    <dc:date>2021-03-17T15:25:50Z</dc:date>
    <item>
      <title>Multiple values field extraction with colon delimiter</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544202#M154151</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;i have been trying to extract error code which is alphanumeric and is delimited as per below but not able to extract with the rex due to the unstructured fields, will there be any way to extract this fields to do a timechart on the error codes.any help pls&lt;/P&gt;&lt;P&gt;sample piece of log&lt;BR /&gt;&lt;SPAN class="t"&gt;error=30578910//=404.EBS.SYSTEM.101:6NAHKFZA//=404.IMS.SERVERIN.103:2GSO0LPT//=404.IES.SERVER.105:5X3HSH18M//=404.IES.SERVEROUT.105&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN class="t"&gt;missingFulfillmentItems&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;required output&amp;nbsp;&lt;/P&gt;&lt;P&gt;404.EBS.SYSTEM.101&lt;/P&gt;&lt;P&gt;404.IMS.SERVERIN.103&lt;/P&gt;&lt;P&gt;404.IES.SERVER.105&lt;/P&gt;&lt;P&gt;404.IES.SERVEROUT.105&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 14:15:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544202#M154151</guid>
      <dc:creator>kumar497</dc:creator>
      <dc:date>2021-03-17T14:15:37Z</dc:date>
    </item>
    <item>
      <title>Multiple values field extraction with colon delimiter</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544206#M154152</link>
      <description>&lt;PRE&gt;| rex max_match=1000 "(?://=(?[^:,]+))"&lt;BR /&gt;| table _time, error_code&lt;/PRE&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;TABLE width="265px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="75px" height="25px"&gt;_time&lt;/TD&gt;&lt;TD width="190px" height="25px"&gt;error_code&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75px" height="91px"&gt;2021-03-17 14:23:41&lt;/TD&gt;&lt;TD width="190px" height="91px"&gt;&lt;DIV class="multivalue-subcell"&gt;404.EBS.SYSTEM.101&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;404.IMS.SERVERIN.103&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;404.IES.SERVER.105&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;404.IES.SERVEROUT.105&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 17 Mar 2021 14:28:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544206#M154152</guid>
      <dc:creator>peter_krammer</dc:creator>
      <dc:date>2021-03-17T14:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple values field extraction with colon delimiter</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544216#M154155</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/78311"&gt;@peter_krammer&lt;/a&gt;&amp;nbsp; for the response, but when appending to the search giving an error and also tried in the regex101.com which seems having an issue with grouping the structure,sorry if i missed anything&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Error in 'rex' command: Encountered the following error while compiling the regex '(?://=(?[^:,]+))': Regex: unrecognized character after (? or (?-.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 15:17:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544216#M154155</guid>
      <dc:creator>kumar497</dc:creator>
      <dc:date>2021-03-17T15:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple values field extraction with colon delimiter</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544218#M154156</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;use the below regex.&lt;/P&gt;&lt;P&gt;| rex "=(?&amp;lt;error_code&amp;gt;\d{3}.\w+.\w+.\d{3})"&amp;nbsp; max_match=10&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 15:25:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544218#M154156</guid>
      <dc:creator>Vardhan</dc:creator>
      <dc:date>2021-03-17T15:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple values field extraction with colon delimiter</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544224#M154157</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/232459"&gt;@Vardhan&lt;/a&gt;&amp;nbsp; it helps&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 15:55:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-values-field-extraction-with-colon-delimiter/m-p/544224#M154157</guid>
      <dc:creator>kumar497</dc:creator>
      <dc:date>2021-03-17T15:55:03Z</dc:date>
    </item>
  </channel>
</rss>

