<?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: Dedup duplicates in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183925#M52964</link>
    <description>&lt;P&gt;When I try and enter the "|dedup _raw" command at the end of my search parameter I end up with no matches but when I take it off the end I end up with thousands.  I can see that they are duplicates(same IP address, name, and port) but it still doesn't work.   any suggestions? &lt;/P&gt;</description>
    <pubDate>Mon, 27 Apr 2015 15:00:29 GMT</pubDate>
    <dc:creator>ITUser1</dc:creator>
    <dc:date>2015-04-27T15:00:29Z</dc:date>
    <item>
      <title>Dedup duplicates</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183919#M52958</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;what is the easiest way to filter out event duplicates without adding every field in the dedup command?&lt;BR /&gt;
Is&lt;BR /&gt;
    | dedup _raw&lt;/P&gt;

&lt;P&gt;the correct approach?&lt;/P&gt;

&lt;P&gt;BR&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2014 13:50:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183919#M52958</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-03-12T13:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dedup duplicates</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183920#M52959</link>
      <description>&lt;P&gt;&lt;CODE&gt;dedup _raw&lt;/CODE&gt; should work just fine, yes.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2014 13:56:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183920#M52959</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2014-03-12T13:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dedup duplicates</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183921#M52960</link>
      <description>&lt;P&gt;great, thanks&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2014 14:18:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183921#M52960</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-03-12T14:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dedup duplicates</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183922#M52961</link>
      <description>&lt;P&gt;I've got two additional questions regarding this topic:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;How can I search for the count of events that have duplicates?&lt;/LI&gt;
&lt;LI&gt;How can I search for the  total number of duplicates?&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;BR &lt;/P&gt;

&lt;P&gt;Heinz&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2014 11:07:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183922#M52961</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-03-13T11:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dedup duplicates</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183923#M52962</link>
      <description>&lt;P&gt;You can count duplicated event by using the "transaction" command. And then count the events by using "eventcount"&lt;/P&gt;

&lt;P&gt;eg.:&lt;/P&gt;

&lt;P&gt;eventtype="*" | transaction session_id | Where eventcount&amp;gt;1 | stats count by eventcount&lt;/P&gt;

&lt;P&gt;to find out how many duplicates occured&lt;/P&gt;

&lt;P&gt;or:&lt;/P&gt;

&lt;P&gt;eventtype="*" | transaction session_id | Where eventcount&amp;gt;1 | stats count(eventcount)&lt;/P&gt;

&lt;P&gt;to count how many different duplicated events occured&lt;/P&gt;

&lt;P&gt;or ...&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2014 12:28:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183923#M52962</guid>
      <dc:creator>Rocket66</dc:creator>
      <dc:date>2014-03-13T12:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dedup duplicates</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183924#M52963</link>
      <description>&lt;P&gt;Unfortunately I don't have an unique identifier for each event like your proposed session_id&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 13:31:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183924#M52963</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-03-14T13:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dedup duplicates</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183925#M52964</link>
      <description>&lt;P&gt;When I try and enter the "|dedup _raw" command at the end of my search parameter I end up with no matches but when I take it off the end I end up with thousands.  I can see that they are duplicates(same IP address, name, and port) but it still doesn't work.   any suggestions? &lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:00:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dedup-duplicates/m-p/183925#M52964</guid>
      <dc:creator>ITUser1</dc:creator>
      <dc:date>2015-04-27T15:00:29Z</dc:date>
    </item>
  </channel>
</rss>

