<?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: Help extracting a value from this log? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356122#M105398</link>
    <description>&lt;P&gt;@rajgowd1, try the following rex command:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;YourBaseSearch&amp;gt;
| rex "Time taken for ExtOfferConnectionUtil\.sendRF is : (?&amp;lt;time&amp;gt;[^\"]+)\""
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 08 Nov 2017 19:38:50 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-11-08T19:38:50Z</dc:date>
    <item>
      <title>Help extracting a value from this log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356121#M105397</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
can someone help me to exact "536 MiliSeconds" from below is log&lt;/P&gt;

&lt;P&gt;6&amp;gt;2017-11-02T05:55:12Z d065d14b-3bcd-481c-512a-bfd42485714d doppler[15]: {"cf_app_id":"d5632633-2365-4b73-83ba-27d0xxxxxxxxx","cf_app_name":"xln-sm-d-MarketingExtOffer-xxxx","cf_ignored_app":false,"cf_org_id":"xxxxxxxx-6ecd-4af6-a32d-xxxxxxxxxx","cf_org_name":"CROSS_xxx-NAM","cf_origin":"xxxxxxxxx","cf_space_id":"xxxxxxxxxx-aa31-414a-88bc-xxxxxxxxx","cf_space_name":"SALES_MKTG-SIT3","deployment":"cf","event_type":"LogMessage","ip":"153.40.210.253","job":"diego_cell-partition-xxxxxxxxxx","job_index":"71","level":"info","message_type":"OUT","msg":" INFO [nio-8080-exec-9] c.c.e.i.u.ExtOfferConnectionUtil c.c.e.i.u.ExtOfferLogUtil.logInfo(ExtOfferLogUtil.java:27) - POST|/private/v1/offer/rocketFuel|84f85631-114f-41f5-9824-xxxxxxxxxx|372aae13-728c-4002-87f5-xxxxxxxxxxx|||||||||||ExtOfferConnectionUtil- Time taken for ExtOfferConnectionUtil.sendRF is : 536 MiliSeconds","origin":"rep","source_instance":"0","source_type":"APP","time":"2017-11-02T05:55:12Z","timestamp":1509602112630605039&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 16:39:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356121#M105397</guid>
      <dc:creator>rajgowd1</dc:creator>
      <dc:date>2020-09-29T16:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help extracting a value from this log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356122#M105398</link>
      <description>&lt;P&gt;@rajgowd1, try the following rex command:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;YourBaseSearch&amp;gt;
| rex "Time taken for ExtOfferConnectionUtil\.sendRF is : (?&amp;lt;time&amp;gt;[^\"]+)\""
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Nov 2017 19:38:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356122#M105398</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-08T19:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Help extracting a value from this log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356123#M105399</link>
      <description>&lt;P&gt;Hi Thank you, i just want the number.can you help on this&lt;BR /&gt;
like&lt;/P&gt;

&lt;P&gt;536 &lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 22:37:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356123#M105399</guid>
      <dc:creator>rajgowd1</dc:creator>
      <dc:date>2017-11-08T22:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help extracting a value from this log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356124#M105400</link>
      <description>&lt;P&gt;@rajgowd1, please try the following then, it breaks field extraction the moment it encounters a space.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;YourBaseSearch&amp;gt;
 | rex "Time taken for ExtOfferConnectionUtil\.sendRF is : (?&amp;lt;time&amp;gt;[^\s]+)\s"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You should try to use &lt;A href="https://regex101.com/"&gt;https://regex101.com/&lt;/A&gt; for creating and testing regular expression with your sample data.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2017 02:31:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-extracting-a-value-from-this-log/m-p/356124#M105400</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-09T02:31:28Z</dc:date>
    </item>
  </channel>
</rss>

