<?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: count the specific items from the list in Splunk in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468859#M132009</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/156785"&gt;@vnravikumar&lt;/a&gt;  I think you misunderstood. The temp column I am getting by using stats like below -&lt;/P&gt;

&lt;P&gt;| stats min(_time) as _time, list(req_content) as temp, count(req_content) as total by uniqueId&lt;/P&gt;

&lt;P&gt;Now,  that temp column has details like above I mentioned in the question. I need another column with the count of /review-basket in the temp column.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 04:54:43 GMT</pubDate>
    <dc:creator>Shashank_87</dc:creator>
    <dc:date>2020-09-30T04:54:43Z</dc:date>
    <item>
      <title>count the specific items from the list in Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468857#M132007</link>
      <description>&lt;P&gt;Hi, I have a list column with different values and i want to count the number of occurence of a specific value. For example I have a column temp which contain list of values like below -&lt;/P&gt;

&lt;P&gt;temp&lt;BR /&gt;
/review-basket&lt;BR /&gt;
/review-basket&lt;BR /&gt;
/review-basket&lt;BR /&gt;
/check-your-details&lt;/P&gt;

&lt;P&gt;Now what i want another column with a count of the occurence of /review-basket which in the above case is 3.&lt;/P&gt;

&lt;P&gt;Any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 09:39:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468857#M132007</guid>
      <dc:creator>Shashank_87</dc:creator>
      <dc:date>2020-04-06T09:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: count the specific items from the list in Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468858#M132008</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Try with&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.....|eventstats count by temp
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Apr 2020 10:01:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468858#M132008</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2020-04-06T10:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: count the specific items from the list in Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468859#M132009</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/156785"&gt;@vnravikumar&lt;/a&gt;  I think you misunderstood. The temp column I am getting by using stats like below -&lt;/P&gt;

&lt;P&gt;| stats min(_time) as _time, list(req_content) as temp, count(req_content) as total by uniqueId&lt;/P&gt;

&lt;P&gt;Now,  that temp column has details like above I mentioned in the question. I need another column with the count of /review-basket in the temp column.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:54:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468859#M132009</guid>
      <dc:creator>Shashank_87</dc:creator>
      <dc:date>2020-09-30T04:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: count the specific items from the list in Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468860#M132010</link>
      <description>&lt;P&gt;@Shashank_87, is your expected output is supposed to look like this?&lt;/P&gt;

&lt;P&gt;temp                                              count&lt;BR /&gt;
/review-basket                             3&lt;BR /&gt;
/review-basket                             3&lt;BR /&gt;
/review-basket                             3&lt;BR /&gt;
/check-your-details                     1&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 13:30:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468860#M132010</guid>
      <dc:creator>rmmiller</dc:creator>
      <dc:date>2020-04-06T13:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: count the specific items from the list in Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468861#M132011</link>
      <description>&lt;P&gt;... | stats count by temp&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 20:26:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-the-specific-items-from-the-list-in-Splunk/m-p/468861#M132011</guid>
      <dc:creator>apoorvaarbooj</dc:creator>
      <dc:date>2020-04-21T20:26:59Z</dc:date>
    </item>
  </channel>
</rss>

