<?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: Group repeating values of a field in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72153#M18043</link>
    <description>&lt;P&gt;Thanks, this got me far enough that it worked&lt;/P&gt;</description>
    <pubDate>Wed, 25 Sep 2013 15:09:09 GMT</pubDate>
    <dc:creator>jedatt01</dc:creator>
    <dc:date>2013-09-25T15:09:09Z</dc:date>
    <item>
      <title>Group repeating values of a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72149#M18039</link>
      <description>&lt;P&gt;I have a csv data source with example values as follows&lt;/P&gt;

&lt;P&gt;MAC_ID, SSID&lt;BR /&gt;
AAAA.AAAA.AAAA, TEST&lt;BR /&gt;
BBBB.BBBB.BBBB, TEST&lt;BR /&gt;
CCCC.CCCC.CCCC, TEST2&lt;BR /&gt;
AAAA.AAAA.AAAA, TEST2&lt;BR /&gt;
BBBB.BBBB.BBBB, TEST3&lt;/P&gt;

&lt;P&gt;I want to be able to display a table that shows repeating values of MAC_ID like below&lt;BR /&gt;
AAAA.AAAA.AAAA, TEST, TEST2&lt;BR /&gt;
BBBB.BBBB.BBBB, TEST, TEST3&lt;/P&gt;

&lt;P&gt;please help!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2013 23:28:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72149#M18039</guid>
      <dc:creator>jedatt01</dc:creator>
      <dc:date>2013-09-24T23:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Group repeating values of a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72150#M18040</link>
      <description>&lt;P&gt;I don't think you can do that on a large scale.  If the MAC_IDs and SSID's were known, then you could create a look up table matrix.&lt;/P&gt;

&lt;P&gt;What you're asking for is changing the SSID field into a new field based on the SSID.&lt;/P&gt;

&lt;P&gt;This would be easy with a table, but it would be vertical, not horizontal:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;search | table MAC_ID,SSID | sort -MAC_ID
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Sep 2013 23:42:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72150#M18040</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-09-24T23:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Group repeating values of a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72151#M18041</link>
      <description>&lt;P&gt;Try something like this &lt;/P&gt;

&lt;P&gt;|inputlookup something.csv | stats count values(SSID) by MACID | where count &amp;gt; 1&lt;/P&gt;

&lt;P&gt;This will show you the MAC ID having repetitive values.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2013 11:16:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72151#M18041</guid>
      <dc:creator>adityapavan18</dc:creator>
      <dc:date>2013-09-25T11:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Group repeating values of a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72152#M18042</link>
      <description>&lt;P&gt;Note that &lt;CODE&gt;values()&lt;/CODE&gt; normalizes the list, and sorts them, while &lt;CODE&gt;list()&lt;/CODE&gt; would give you each and every occurrence, in the order in which it appears in the log. In this case, values is probably what you want, but list can have its utility, too.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2013 13:27:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72152#M18042</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2013-09-25T13:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Group repeating values of a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72153#M18043</link>
      <description>&lt;P&gt;Thanks, this got me far enough that it worked&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2013 15:09:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72153#M18043</guid>
      <dc:creator>jedatt01</dc:creator>
      <dc:date>2013-09-25T15:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Group repeating values of a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72154#M18044</link>
      <description>&lt;P&gt;Same with this one, worked for me as well&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2013 15:09:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Group-repeating-values-of-a-field/m-p/72154#M18044</guid>
      <dc:creator>jedatt01</dc:creator>
      <dc:date>2013-09-25T15:09:13Z</dc:date>
    </item>
  </channel>
</rss>

