<?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 How to create a search to find the same IP hitting specific URL (x number of times)? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-to-find-the-same-IP-hitting-specific-URL/m-p/439302#M124979</link>
    <description>&lt;P&gt;Having trouble creating a search that will determine if any single unique IP hits a defined URL 5 or more times within a 30 minute time frame. I've been trying something like this...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=*index* sourcetype=*sourcetype* URL="*uriPath*"
| stats dc(*uriPath*) as URL by *srcIP*
| where URL&amp;gt;5
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 21 Jun 2019 20:49:48 GMT</pubDate>
    <dc:creator>sbhuie</dc:creator>
    <dc:date>2019-06-21T20:49:48Z</dc:date>
    <item>
      <title>How to create a search to find the same IP hitting specific URL (x number of times)?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-to-find-the-same-IP-hitting-specific-URL/m-p/439302#M124979</link>
      <description>&lt;P&gt;Having trouble creating a search that will determine if any single unique IP hits a defined URL 5 or more times within a 30 minute time frame. I've been trying something like this...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=*index* sourcetype=*sourcetype* URL="*uriPath*"
| stats dc(*uriPath*) as URL by *srcIP*
| where URL&amp;gt;5
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Jun 2019 20:49:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-to-find-the-same-IP-hitting-specific-URL/m-p/439302#M124979</guid>
      <dc:creator>sbhuie</dc:creator>
      <dc:date>2019-06-21T20:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a search to find the same IP hitting specific URL (x number of times)?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-to-find-the-same-IP-hitting-specific-URL/m-p/439303#M124980</link>
      <description>&lt;P&gt;@sbhuie try the following&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=&amp;lt;index&amp;gt; sourcetype=&amp;lt;sourcetype&amp;gt; URL="&amp;lt;uriPath&amp;gt;"
 | bin _time span=30min
 | stats dc(URL) as URL by _time srcIP
 | where URL&amp;gt;5
 | xyseries _time srcIP URL 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Following is run anywhere search example based on Splunk's _internal index&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd_ui_access
| bin _time span=30min
| stats dc(uri) as Hit by _time  clientip
| search Hit&amp;gt;5
| xyseries _time clientip Hit
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 23 Jun 2019 12:10:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-to-find-the-same-IP-hitting-specific-URL/m-p/439303#M124980</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-06-23T12:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a search to find the same IP hitting specific URL (x number of times)?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-to-find-the-same-IP-hitting-specific-URL/m-p/439304#M124981</link>
      <description>&lt;P&gt;If it is a single uriPath you are looking at, you can do this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="&amp;lt;index&amp;gt;" sourcetype="&amp;lt;sourcetype&amp;gt;" URL="&amp;lt;uriPath&amp;gt;" | stats count by srcIP | search count&amp;gt;5
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Jun 2019 15:58:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-to-find-the-same-IP-hitting-specific-URL/m-p/439304#M124981</guid>
      <dc:creator>spayneort</dc:creator>
      <dc:date>2019-06-24T15:58:17Z</dc:date>
    </item>
  </channel>
</rss>

