<?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: Find repeating rows from a specific client in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279586#M84488</link>
    <description>&lt;P&gt;I guess I mis-understood you question. I thought you wanted to see all the repeating events, sounds like you want to only see one of the repeating events, right?. Your change should work, or you can try this change.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=cloudserver ClientConfig | bin span=5s _time | eventstats count by deviceGuid _time | where count&amp;gt;100 | stats count by _time deviceGuid, deviceBrand, deviceModel
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 25 Jul 2016 12:51:38 GMT</pubDate>
    <dc:creator>sundareshr</dc:creator>
    <dc:date>2016-07-25T12:51:38Z</dc:date>
    <item>
      <title>Find repeating rows from a specific client</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279582#M84484</link>
      <description>&lt;P&gt;I am logging from Amazon ELB and I have some particular clients that seem to have a bug that causes them to flood the server with the same request over and over. Usually the server receive around 1000 requests during 1-2 seconds then it will stop. This happens around once a week. I would like to locate all these instances and put them in a table. In Splunk I have the following parameters available that I would like to group on:&lt;BR /&gt;
deviceGuid&lt;BR /&gt;
I would like to have a list showing the following each time count &amp;gt; 100:&lt;BR /&gt;
DateTime, deviceGuid, deviceBrand, deviceModel, count&lt;/P&gt;

&lt;P&gt;For example this would be perfect if I can achieve:&lt;/P&gt;

&lt;P&gt;2016-01-01 00:00:00,d9244663-9ac8-48ce-b125-35b553e39c9a,IBM,ThinkPad 200,900&lt;BR /&gt;
2016-01-01 00:05:00,d9244663-9ac8-48ce-b125-35b553e39c9a,IBM,ThinkPad 200,800&lt;BR /&gt;
2016-01-01 00:05:00,2e718d56-91bf-401c-a305-79bc638ac705,IBM,ThinkPad 500,900&lt;/P&gt;

&lt;P&gt;I would like DateTime of the span together deviceGuid to be unique on each row&lt;/P&gt;

&lt;P&gt;This is what I have so far&lt;BR /&gt;
host=cloudserver ClientConfig | timechart span=5sec count | where count &amp;gt; 100 &lt;/P&gt;

&lt;P&gt;Is this doable?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 10:02:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279582#M84484</guid>
      <dc:creator>jensolsson83</dc:creator>
      <dc:date>2016-07-25T10:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Find repeating rows from a specific client</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279583#M84485</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;P&gt;host=cloudserver ClientConfig | bin span=5s _time | eventstats count by ClientConfig _time | where count&amp;gt;100 | table _time deviceGuid, deviceBrand, deviceModel, count &lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 11:58:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279583#M84485</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-07-25T11:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Find repeating rows from a specific client</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279584#M84486</link>
      <description>&lt;P&gt;host=cloudserver ClientConfig | bin span=5s _time | eventstats count by ClientConfig _time | where count&amp;gt;100 | table _time deviceGuid, deviceBrand, deviceModel, count &lt;/P&gt;

&lt;P&gt;Did not generate any results&lt;/P&gt;

&lt;P&gt;I changed it like this:&lt;BR /&gt;
host=cloudserver ClientConfig | bin span=5s _time | eventstats count by deviceGuid _time | where count&amp;gt;100 | table _time deviceGuid, deviceBrand, deviceModel, count &lt;/P&gt;

&lt;P&gt;And now the list colums show as expected however there are many 100% equal rows with the exact same time, deviceguid. devicemodel, count.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 12:12:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279584#M84486</guid>
      <dc:creator>jensolsson83</dc:creator>
      <dc:date>2016-07-25T12:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Find repeating rows from a specific client</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279585#M84487</link>
      <description>&lt;P&gt;This actually seem to made it. Is this correct?&lt;/P&gt;

&lt;P&gt;host=cloudserver ClientConfig | bin span=5s _time | eventstats count by deviceGuid _time | where count&amp;gt;100 | table _time deviceGuid, deviceBrand, deviceModel, count | dedup _time deviceGuid, deviceBrand, deviceModel, count&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 12:15:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279585#M84487</guid>
      <dc:creator>jensolsson83</dc:creator>
      <dc:date>2016-07-25T12:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Find repeating rows from a specific client</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279586#M84488</link>
      <description>&lt;P&gt;I guess I mis-understood you question. I thought you wanted to see all the repeating events, sounds like you want to only see one of the repeating events, right?. Your change should work, or you can try this change.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=cloudserver ClientConfig | bin span=5s _time | eventstats count by deviceGuid _time | where count&amp;gt;100 | stats count by _time deviceGuid, deviceBrand, deviceModel
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Jul 2016 12:51:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279586#M84488</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-07-25T12:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Find repeating rows from a specific client</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279587#M84489</link>
      <description>&lt;P&gt;Thanks! works perfectly&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 12:52:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Find-repeating-rows-from-a-specific-client/m-p/279587#M84489</guid>
      <dc:creator>jensolsson83</dc:creator>
      <dc:date>2016-07-25T12:52:57Z</dc:date>
    </item>
  </channel>
</rss>

