<?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: How to generate a search to find unique IPs hitting a specific URL in Specific Time Range? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327974#M97618</link>
    <description>&lt;P&gt;Glad to help.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Mar 2017 21:21:28 GMT</pubDate>
    <dc:creator>DalJeanis</dc:creator>
    <dc:date>2017-03-01T21:21:28Z</dc:date>
    <item>
      <title>How to generate a search to find unique IPs hitting a specific URL in Specific Time Range?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327968#M97612</link>
      <description>&lt;P&gt;Hello - I'm trying to write a search string that finds unique IPs hitting a specific URL in 30 minute bursts. For example, if src_ip 123456.00 hits "&lt;A href="http://www.foo.com"&gt;www.foo.com&lt;/A&gt;" five times in a 30 minute period, I only want it to count as one hit.&lt;/P&gt;

&lt;P&gt;How is this done?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 22:29:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327968#M97612</guid>
      <dc:creator>mistydennis</dc:creator>
      <dc:date>2017-02-28T22:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search to find unique IPs hitting a specific URL in Specific Time Range?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327969#M97613</link>
      <description>&lt;P&gt;Without much info to go on, try something like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=foo sourcetype=bar "www.foo.com"| stats count by src_ip | table src_ip
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Feb 2017 22:32:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327969#M97613</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-28T22:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search to find unique IPs hitting a specific URL in Specific Time Range?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327970#M97614</link>
      <description>&lt;P&gt;So that will find the unique IPs, but what I'm struggling with is applying the 30 minute time filter to them. So if my url gets hit 100 times in 30 minutes by the same unique IP, I don't want the 100 hits to apply towards my count. I only want it to act as 1 hit. &lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 22:43:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327970#M97614</guid>
      <dc:creator>mistydennis</dc:creator>
      <dc:date>2017-02-28T22:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search to find unique IPs hitting a specific URL in Specific Time Range?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327971#M97615</link>
      <description>&lt;P&gt;if you want fixed 30 minute periods -&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=foo sourcetype=bar "www.foo.com"| bin _time span=30m | stats count by _time src_ip | table _time  src_ip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;if you want floating 30m periods, and for example want to count events that are more than 15m apart as separate&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=foo sourcetype=bar "www.foo.com"| transaction src_ip maxspan=30m maxpause=15m keeporphans=true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;With either one of those, you are then going to drop the result into something like &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats count by src_ip
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Feb 2017 22:47:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327971#M97615</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-28T22:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search to find unique IPs hitting a specific URL in Specific Time Range?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327972#M97616</link>
      <description>&lt;P&gt;Like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=foo sourcetype=bar "www.foo.com"| dedup src_ip | table src_ip
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Mar 2017 19:22:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327972#M97616</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-03-01T19:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search to find unique IPs hitting a specific URL in Specific Time Range?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327973#M97617</link>
      <description>&lt;P&gt;Thanks, DalJeanis - this is what I was looking for!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 19:35:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327973#M97617</guid>
      <dc:creator>mistydennis</dc:creator>
      <dc:date>2017-03-01T19:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search to find unique IPs hitting a specific URL in Specific Time Range?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327974#M97618</link>
      <description>&lt;P&gt;Glad to help.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 21:21:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-to-find-unique-IPs-hitting-a-specific/m-p/327974#M97618</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-03-01T21:21:28Z</dc:date>
    </item>
  </channel>
</rss>

