<?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 extract two values as field from following log and show average count of requests. in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/516986#M3175</link>
    <description>&lt;P&gt;i want to extract two values from the below log message like TestUser as one field(featuename) and accounts_fetch as scenario name , and visualize the average requests for featurename +sceanrioname&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"Successfully retrieved the account details for user: KL**19**19**19**19**11**11**11** with feature: TestUser, scenario: accounts_fetch"&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 31 Aug 2020 09:41:02 GMT</pubDate>
    <dc:creator>nandhiniG</dc:creator>
    <dc:date>2020-08-31T09:41:02Z</dc:date>
    <item>
      <title>extract two values as field from following log and show average count of requests.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/516986#M3175</link>
      <description>&lt;P&gt;i want to extract two values from the below log message like TestUser as one field(featuename) and accounts_fetch as scenario name , and visualize the average requests for featurename +sceanrioname&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"Successfully retrieved the account details for user: KL**19**19**19**19**11**11**11** with feature: TestUser, scenario: accounts_fetch"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 09:41:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/516986#M3175</guid>
      <dc:creator>nandhiniG</dc:creator>
      <dc:date>2020-08-31T09:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: extract two values as field from following log and show average count of requests.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/516994#M3176</link>
      <description>&lt;LI-CODE lang="markup"&gt;... base search
| rex "feature: \"(?&amp;lt;featurename&amp;gt;[^,]+), scenario: (?&amp;lt;scenarioname&amp;gt;[^\"]+)\""
| eval combined=featurename + "+" + scenarioname&lt;/LI-CODE&gt;&lt;P&gt;You can now use stats to count by combined over some time period (e.g. 1hr), then another stats to take average counts for that period over a longer period (e.g. 1 day) although it isn't clear if that is what you mean by average requests&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 10:30:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/516994#M3176</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-08-31T10:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: extract two values as field from following log and show average count of requests.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/516998#M3177</link>
      <description>&lt;P&gt;I used the suggested pattern with sma;ll changes for extracting field as table ,&lt;/P&gt;&lt;P&gt;"Successfully retrieved the account details for user:"| rex&lt;BR /&gt;field=msg "feature: \"(?&amp;lt;featurename&amp;gt;[^,]+), scenario: (?&amp;lt;scenarioname&amp;gt;[^\"]+)\"" | table featurename scenarioname&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but the string value is not extracted in table i see empty tables&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 11:14:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/516998#M3177</guid>
      <dc:creator>nandhiniG</dc:creator>
      <dc:date>2020-08-31T11:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: extract two values as field from following log and show average count of requests.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/517000#M3178</link>
      <description>&lt;P&gt;The pattern had extra double quotes in which were not needed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"Successfully retrieved the account details for user:"| rex
field=msg "feature: (?&amp;lt;featurename&amp;gt;[^,]+), scenario: (?&amp;lt;scenarioname&amp;gt;.+)" | table featurename scenarioname&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 11:23:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/517000#M3178</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-08-31T11:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: extract two values as field from following log and show average count of requests.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/517002#M3179</link>
      <description>&lt;P&gt;Thank you !!! it works&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 11:40:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/extract-two-values-as-field-from-following-log-and-show-average/m-p/517002#M3179</guid>
      <dc:creator>nandhiniG</dc:creator>
      <dc:date>2020-08-31T11:40:19Z</dc:date>
    </item>
  </channel>
</rss>

