<?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: How to extract more number of strings under the same field name? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127972#M34737</link>
    <description>&lt;P&gt;great.. thanks a ton&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jul 2015 10:23:39 GMT</pubDate>
    <dc:creator>Madhan45</dc:creator>
    <dc:date>2015-07-20T10:23:39Z</dc:date>
    <item>
      <title>How to extract more number of strings under the same field name?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127968#M34733</link>
      <description>&lt;P&gt;my event is - "common.exceptions.CommandFailedAtServerException: &lt;BR /&gt;
concurrent.ExecutionException: &lt;BR /&gt;
common.SocketPoolException: Unable to connect socket ... 3 lines omitted: java.net.ConnectException: Connection refused ... 8 lines omitted ... common.exceptions.CommandFailedException: "&lt;/P&gt;

&lt;P&gt;i want to extract strings  "CommandFailedAtServerException, ExecutionException, SocketPoolException  java.net.ConnectException  CommandFailedException" from the above event under the single filed?&lt;/P&gt;

&lt;P&gt;How can i do that?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2015 12:02:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127968#M34733</guid>
      <dc:creator>Madhan45</dc:creator>
      <dc:date>2015-07-17T12:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract more number of strings under the same field name?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127969#M34734</link>
      <description>&lt;P&gt;Like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rex max_match=0 "(?im).*?(?&amp;lt;Exceptions&amp;gt;[\S]*Exception[\S]*)"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Jul 2015 14:48:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127969#M34734</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-07-17T14:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract more number of strings under the same field name?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127970#M34735</link>
      <description>&lt;P&gt;Hi woodcock.. thats really great... could u explain me the logic?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 03:12:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127970#M34735</guid>
      <dc:creator>Madhan45</dc:creator>
      <dc:date>2015-07-20T03:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract more number of strings under the same field name?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127971#M34736</link>
      <description>&lt;P&gt;The &lt;CODE&gt;rex&lt;/CODE&gt; command takes the &lt;CODE&gt;_raw&lt;/CODE&gt; field and applies the RegEx to it as many times as possible (&lt;CODE&gt;max_match=0&lt;/CODE&gt;). The &lt;CODE&gt;i&lt;/CODE&gt; is for &lt;CODE&gt;ignore case&lt;/CODE&gt; and the &lt;CODE&gt;m&lt;/CODE&gt; is for &lt;CODE&gt;multiline&lt;/CODE&gt;.  we skip as few characters as possible to get to non-whitespace characters that end with "Exception" followed by as many non-whitespace characters as possible (this creates the whitespace boundaries) and we call that captured string &lt;CODE&gt;Exceptions&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 04:06:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127971#M34736</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-07-20T04:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract more number of strings under the same field name?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127972#M34737</link>
      <description>&lt;P&gt;great.. thanks a ton&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 10:23:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127972#M34737</guid>
      <dc:creator>Madhan45</dc:creator>
      <dc:date>2015-07-20T10:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract more number of strings under the same field name?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127973#M34738</link>
      <description>&lt;P&gt;And one more question. I have  two source files and they are containing following fields&lt;BR /&gt;
1.source=Order, fields= Key,Name,Product,Price&lt;BR /&gt;
2.source=Delivery, fields=Key,Shipdat,delivery location,price,&lt;/P&gt;

&lt;P&gt;The data which comes under "Delivery" should fall under "delivered" category for that i have used this join query ""source="Delivery.csv"| eval status="Delivered"|join Key [source=order.csv|]"" and i got the result.&lt;/P&gt;

&lt;P&gt;So how to use the join query for the category "Not delivered"&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 10:44:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127973#M34738</guid>
      <dc:creator>Madhan45</dc:creator>
      <dc:date>2015-07-20T10:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract more number of strings under the same field name?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127974#M34739</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source="Delivery.csv" OR source="order.csv" | stats values(*) AS * BY Key | where isnull(delivery)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If that doesn't do it, ask a new question in the forum.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2015 16:11:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-extract-more-number-of-strings-under-the-same-field-name/m-p/127974#M34739</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-07-30T16:11:40Z</dc:date>
    </item>
  </channel>
</rss>

