<?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: Counting duplicate values in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340444#M100974</link>
    <description>&lt;P&gt;The query &lt;CODE&gt;your base search | stats count by sessionId, personName&lt;/CODE&gt; does do that. Could you post the exact query you're using, corresponding output (which I believe have issues) and corresponding expected output?&lt;/P&gt;</description>
    <pubDate>Tue, 07 Nov 2017 18:30:02 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2017-11-07T18:30:02Z</dc:date>
    <item>
      <title>Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340435#M100965</link>
      <description>&lt;P&gt;&lt;EM&gt;Situation&lt;/EM&gt; : I have fields &lt;STRONG&gt;sessionId&lt;/STRONG&gt; and &lt;STRONG&gt;personName&lt;/STRONG&gt;. This session ID has many-to-may mapping with personName.&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Need is&lt;/EM&gt; : I want the count of personName associated with sessionId.&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Query I am using&lt;/EM&gt; : | table sessionId, personName, it gives following &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;sessionId personName&lt;/STRONG&gt;&lt;BR /&gt;
1. 1234        Name1&lt;BR /&gt;
2. 1234        Name 2&lt;BR /&gt;
3. 1234        Name1&lt;BR /&gt;
4. 1234        Name3&lt;BR /&gt;
5. 4321        Name1&lt;BR /&gt;
6. 4321        Name3&lt;BR /&gt;
7. 4321        Name3&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;What I want&lt;/EM&gt; :&lt;BR /&gt;
   &lt;STRONG&gt;sessionId personName count&lt;/STRONG&gt;&lt;BR /&gt;
1. 1234        Name1           2&lt;BR /&gt;
2. 1234        Name2           1&lt;BR /&gt;
3. 1234        Name3           1&lt;BR /&gt;
4. 4321        Name1           1&lt;BR /&gt;
5. 4321        Name3           2&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 19:40:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340435#M100965</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-10-31T19:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340436#M100966</link>
      <description>&lt;P&gt;You can just replace &lt;CODE&gt;| table sessionId, personName&lt;/CODE&gt; with &lt;CODE&gt;| stats count by sessionId, personName&lt;/CODE&gt; in your search.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Update&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;User following for your sorting and filter requirement.&lt;/P&gt;

&lt;P&gt;your base search &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats count by sessionId, personName 
| where count&amp;gt;3
| sort -count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 Oct 2017 19:44:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340436#M100966</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-10-31T19:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340437#M100967</link>
      <description>&lt;P&gt;I also want to have a where clause  -- where I want all the sessionId with highest number of occurrence. And this occurrence value should be configurable.  &lt;/P&gt;

&lt;P&gt;So, lets say, if I want the occurrence threshold  is &lt;STRONG&gt;3&lt;/STRONG&gt; I should all the below three &lt;BR /&gt;
1. 1234 Name1 20&lt;BR /&gt;
2. 1234 Name2 15&lt;BR /&gt;
3. 1234 Name3 1&lt;BR /&gt;
4. 4321 Name1  2&lt;BR /&gt;
5. 4321 Name3  6&lt;BR /&gt;
6. 4321 Name3  9&lt;/P&gt;

&lt;P&gt;if I want the occurrence threshold  is &lt;STRONG&gt;2&lt;/STRONG&gt; I should all the below three &lt;BR /&gt;
1. 1234 Name1 20&lt;BR /&gt;
2. 1234 Name2 15&lt;BR /&gt;
3. 4321 Name3  6&lt;BR /&gt;
4. 4321 Name3  9&lt;/P&gt;

&lt;P&gt;So, if there is sessionID (lets say 3243) with just 1 occurrence, then it should not come in the result.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 20:44:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340437#M100967</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-11-02T20:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340438#M100968</link>
      <description>&lt;P&gt;I also want to have a where clause  -- where I want all the sessionId with highest number of occurrence. And this occurrence value should be configurable.  &lt;/P&gt;

&lt;P&gt;So, lets say, if I want the occurrence threshold  is &lt;STRONG&gt;3&lt;/STRONG&gt; I should all the below three &lt;BR /&gt;
1. 1234 Name1 20&lt;BR /&gt;
2. 1234 Name2 15&lt;BR /&gt;
3. 1234 Name3 1&lt;BR /&gt;
4. 4321 Name1  2&lt;BR /&gt;
5. 4321 Name3  6&lt;BR /&gt;
6. 4321 Name3  9&lt;/P&gt;

&lt;P&gt;if I want the occurrence threshold  is &lt;STRONG&gt;2&lt;/STRONG&gt; I should all the below three &lt;BR /&gt;
1. 1234 Name1 20&lt;BR /&gt;
2. 1234 Name2 15&lt;BR /&gt;
3. 4321 Name3  6&lt;BR /&gt;
4. 4321 Name3  9&lt;/P&gt;

&lt;P&gt;So, if there is sessionID (lets say 3243) with just 1 occurrence, then it should not come in the result.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 20:44:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340438#M100968</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-11-02T20:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340439#M100969</link>
      <description>&lt;P&gt;I also want to have a where clause  -- where I want all the sessionId with highest number of occurrence. And this occurrence value should be configurable.  &lt;/P&gt;

&lt;P&gt;So, lets say, if I want the occurrence threshold  is &lt;STRONG&gt;3&lt;/STRONG&gt; I should all the below three &lt;BR /&gt;
1. 1234 Name1 20&lt;BR /&gt;
2. 1234 Name2 15&lt;BR /&gt;
3. 1234 Name3 1&lt;BR /&gt;
4. 4321 Name1  2&lt;BR /&gt;
5. 4321 Name3  6&lt;BR /&gt;
6. 4321 Name3  9&lt;/P&gt;

&lt;P&gt;if I want the occurrence threshold  is &lt;STRONG&gt;2&lt;/STRONG&gt; I should all the below three &lt;BR /&gt;
1. 1234 Name1 20&lt;BR /&gt;
2. 1234 Name2 15&lt;BR /&gt;
3. 4321 Name3  6&lt;BR /&gt;
4. 4321 Name3  9&lt;/P&gt;

&lt;P&gt;So, if there is sessionID (lets say 3243) with just 1 occurrence, then it should not come in the result.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 20:44:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340439#M100969</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-11-02T20:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340440#M100970</link>
      <description>&lt;P&gt;Try the updated answer.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 21:23:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340440#M100970</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-02T21:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340441#M100971</link>
      <description>&lt;P&gt;No, this doesn't help -&lt;/P&gt;

&lt;P&gt;It gives something like this , assuming the count is more that 10:&lt;BR /&gt;
&lt;STRONG&gt;1. 1234 Name1 20&lt;BR /&gt;
2. 4321 Name2 15&lt;/STRONG&gt;&lt;BR /&gt;
3. 1234 Name3 1&lt;BR /&gt;
4. 4321 Name1 2&lt;BR /&gt;
5. 4321 Name3 6&lt;BR /&gt;
6. 4321 Name3 9&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 21:52:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340441#M100971</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-11-02T21:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340442#M100972</link>
      <description>&lt;P&gt;Change the where clause according to the threshold you want to use.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 21:57:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340442#M100972</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-02T21:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340443#M100973</link>
      <description>&lt;P&gt;this is not helping either. Basically I want the key (sessionId in our case) to be repetitive if there are different  personName occurring multiple times&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;1234 Name1 20&lt;/LI&gt;
&lt;LI&gt;1234 Name2 15&lt;/LI&gt;
&lt;LI&gt;1234 Name3 1&lt;/LI&gt;
&lt;LI&gt;4321 Name1 2&lt;/LI&gt;
&lt;LI&gt;4321 Name3 6&lt;/LI&gt;
&lt;LI&gt;4321 Name3 9&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 07 Nov 2017 17:50:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340443#M100973</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-11-07T17:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340444#M100974</link>
      <description>&lt;P&gt;The query &lt;CODE&gt;your base search | stats count by sessionId, personName&lt;/CODE&gt; does do that. Could you post the exact query you're using, corresponding output (which I believe have issues) and corresponding expected output?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 18:30:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340444#M100974</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-07T18:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340445#M100975</link>
      <description>&lt;P&gt;If I'm correctly understanding your goal, you want to be able to see the top &lt;EM&gt;x&lt;/EM&gt; number of &lt;CODE&gt;personName&lt;/CODE&gt; values per &lt;CODE&gt;sessionId&lt;/CODE&gt;. Try this:&lt;BR /&gt;
&lt;CODE&gt;your base search | top 2 personName BY sessionId showperc=false&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;In this example, I used &lt;CODE&gt;x=2&lt;/CODE&gt;, but you can replace the 2 there with another number and, depending on your use case, perhaps replace it with a token that is set elsewhere.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 19:29:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340445#M100975</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-07T19:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340446#M100976</link>
      <description>&lt;P&gt;92S38LP31QG4E93Z0A0     NAME1&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME1&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME1&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME2&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME2&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME2&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME2&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME2&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3&lt;/P&gt;

&lt;P&gt;1826SSQ98518QAID99A     NAME1&lt;BR /&gt;
1826SSQ98518QAID99A     NAME2&lt;BR /&gt;
1826SSQ98518QAID99A     NAME3&lt;BR /&gt;
1826SSQ98518QAID99A     NAME4&lt;BR /&gt;
1826SSQ98518QAID99A     NAME3&lt;BR /&gt;
1826SSQ98518QAID99A     NAME2&lt;BR /&gt;
1826SSQ98518QAID99A     NAME2&lt;BR /&gt;
1826SSQ98518QAID99A     NAME3&lt;/P&gt;

&lt;P&gt;0LKJ68OP19A8865A92Q     NAME1&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME1&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME2&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME2&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME4&lt;/P&gt;

&lt;P&gt;92S38LP31QG4E93Z0A0     NAME1   3&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME2   5&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3   5&lt;BR /&gt;
1826SSQ98518QAID99A     NAME1   1&lt;BR /&gt;
1826SSQ98518QAID99A     NAME2   3&lt;BR /&gt;
1826SSQ98518QAID99A     NAME3   3&lt;BR /&gt;
1826SSQ98518QAID99A     NAME4   1&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME1   2&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME2   2&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME4   1&lt;/P&gt;

&lt;P&gt;Now, if I say my occurence count is 2 then I should get &lt;/P&gt;

&lt;P&gt;92S38LP31QG4E93Z0A0     NAME2   5&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3   5&lt;/P&gt;

&lt;P&gt;1826SSQ98518QAID99A     NAME2   3&lt;BR /&gt;
1826SSQ98518QAID99A     NAME3   2&lt;/P&gt;

&lt;P&gt;0LKJ68OP19A8865A92Q     NAME1   2&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME2   2&lt;/P&gt;

&lt;P&gt;Instead what I am getting is --&amp;gt; coz it is just checking the count(end column). But I want to check the occurence count of the sessionID&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME1   3&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME2   5&lt;BR /&gt;
92S38LP31QG4E93Z0A0     NAME3   5&lt;/P&gt;

&lt;P&gt;1826SSQ98518QAID99A     NAME2   3&lt;BR /&gt;
1826SSQ98518QAID99A     NAME3   3&lt;/P&gt;

&lt;P&gt;0LKJ68OP19A8865A92Q     NAME1   2&lt;BR /&gt;
0LKJ68OP19A8865A92Q     NAME2   2&lt;/P&gt;

&lt;P&gt;And I am using exact same query you mentioned&lt;/P&gt;

&lt;P&gt;| stats count by sessionId, personName &lt;BR /&gt;
 | where count&amp;gt;3&lt;BR /&gt;
 | sort -count&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 06:18:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340446#M100976</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-11-08T06:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340447#M100977</link>
      <description>&lt;P&gt;sorry, I am not getting the logic of you query. You can ref. above post for detailed explanation, I just posted &lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 06:20:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340447#M100977</guid>
      <dc:creator>ataunk</dc:creator>
      <dc:date>2017-11-08T06:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340448#M100978</link>
      <description>&lt;P&gt;As I understand it, you want to:&lt;BR /&gt;
1. Collapse instances where the sessionId and personName are the same, appending to the end of such collapsed instance the count of times they were the same (transforming, for example, seven identical lines of &lt;CODE&gt;92S38LP31QG4E93Z0A0 NAME1&lt;/CODE&gt; into &lt;CODE&gt;92S38LP31QG4E93Z0A0 NAME1 7&lt;/CODE&gt;)&lt;BR /&gt;
2. Sort the resulting events for each sessionId in descending order by the count values&lt;BR /&gt;
3. Set a threshold of events to retain for each sessionId - top 2, top 3, etc. So if you have a total of five sessionIds in the original data, then you will have a maximum of 5x events retained (possibly less than 5x if, for example,  you set a threshold of 3 but you only have 2 personName values for a particular sessionId).&lt;/P&gt;

&lt;P&gt;So the logic of the query I posted is quite simple: &lt;CODE&gt;top&lt;/CODE&gt; does all three at once. It applies a count value of personName instances per sessionId, sorts the events in descending order within each sessionId, and then retains the top &lt;EM&gt;x&lt;/EM&gt; items. &lt;/P&gt;

&lt;P&gt;Have you tried applying my query to your data to see if it works? In my sample data, it achieved what I detailed here.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 13:23:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340448#M100978</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-08T13:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340449#M100979</link>
      <description>&lt;P&gt;Maybe it would help to have a shared dataset that we could reference to track your goals against the behavior of the query. Here's a run-anywhere command that will generate &amp;gt;75 events with sessionId and personName values:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| makeresults count=5 | eval sessionId=1234, personName="Name1" | append [ | makeresults count=4 | eval sessionId=1234, personName="Name2" ] | append [ | makeresults count=6 | eval sessionId=1234, personName="Name3" ] | append  [ | makeresults count=5 | eval sessionId=4321, personName="Name1" ] | append [ | makeresults count=4 | eval sessionId=4321, personName="Name2" ] | append [ | makeresults count=6 | eval sessionId=4321, personName="Name3" ] | append [ | makeresults count=9 | eval sessionId=5678, personName="Name1" ] | append [ | makeresults count=54 | eval sessionId=5678, personName="Name2" ]&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;If I append to that command the following:&lt;BR /&gt;
&lt;CODE&gt;| top 2 personName BY sessionId showperc=false&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;The result is a table like this:&lt;BR /&gt;
&lt;PRE&gt;&lt;BR /&gt;
sessionId  personName   count&lt;BR /&gt;
 1234        Name3        6&lt;BR /&gt;
 1234        Name1        5&lt;BR /&gt;
 4321        Name3        6&lt;BR /&gt;
 4321        Name1        5&lt;BR /&gt;
 5678        Name2        54&lt;BR /&gt;
 5678        Name1        9&lt;BR /&gt;
&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;Does that match your goal/requirements?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 15:46:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340449#M100979</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-08T15:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Counting duplicate values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340450#M100980</link>
      <description>&lt;P&gt;Did this work for you? Or did you find another solution?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 14:21:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Counting-duplicate-values/m-p/340450#M100980</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-15T14:21:01Z</dc:date>
    </item>
  </channel>
</rss>

