<?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: Show only duplicated fields in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155268#M31545</link>
    <description>&lt;P&gt;ps : please mark your question as answered with the left checkbox to accept your own answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Feb 2014 18:29:53 GMT</pubDate>
    <dc:creator>yannK</dc:creator>
    <dc:date>2014-02-18T18:29:53Z</dc:date>
    <item>
      <title>Show only duplicated fields</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155264#M31541</link>
      <description>&lt;P&gt;I have customers who upload sets of files every day. The upload is done automatically. Sometimes there will be a hitch in the system and one or more of the file set will be uploaded multiple times. The file names all have the term &lt;CODE&gt;_seq_&lt;/CODE&gt; followed by a sequence number. So part of the customer events will look like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;abcdef_seq_1
abcdef_seq_2
abcdef_seq_2
abcdef_seq_3
abcdef_seq_4
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I only want to show &lt;STRONG&gt;only&lt;/STRONG&gt; the duplicated upload files, in this case &lt;CODE&gt;abcdef_seq_2&lt;/CODE&gt;. It shouldn't be that hard but I'm busting my head. What am I missing?&lt;/P&gt;

&lt;P&gt;Ultimately I need to put this into a data model for a Pivot.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2014 15:59:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155264#M31541</guid>
      <dc:creator>kmattern</dc:creator>
      <dc:date>2014-02-18T15:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Show only duplicated fields</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155265#M31542</link>
      <description>&lt;P&gt;In splunk, do you see duplicate data for the files uploaded multiple times?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2014 16:36:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155265#M31542</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-02-18T16:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Show only duplicated fields</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155266#M31543</link>
      <description>&lt;P&gt;I think I finally figured it out. This search returns only those IIS events that have duplicate cs_uri-query fields.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="iis" cs_uri_query="*_seq*"  
| stats first(cs_uri_query) as DupFile, first(cs_username) as Customer, count(cs_uri_query) AS Duplicates by cs_uri_query  
| where Duplicates&amp;gt;1 
| table Customer, DupFile, Duplicates
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Feb 2014 16:39:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155266#M31543</guid>
      <dc:creator>kmattern</dc:creator>
      <dc:date>2014-02-18T16:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Show only duplicated fields</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155267#M31544</link>
      <description>&lt;P&gt;this is the good method.&lt;/P&gt;

&lt;P&gt;to find a dulpicate field&lt;BR /&gt;
&lt;CODE&gt;* | stats count by myfield | where count&amp;gt;1&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;to look at the whole events&lt;BR /&gt;
&lt;CODE&gt;* | stats count by _raw | where count&amp;gt;1&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2014 18:27:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155267#M31544</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-02-18T18:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Show only duplicated fields</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155268#M31545</link>
      <description>&lt;P&gt;ps : please mark your question as answered with the left checkbox to accept your own answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2014 18:29:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Show-only-duplicated-fields/m-p/155268#M31545</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-02-18T18:29:53Z</dc:date>
    </item>
  </channel>
</rss>

