<?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 detect regular activity from logs. in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179179#M35910</link>
    <description>&lt;P&gt;Hi, splunk community.&lt;/P&gt;

&lt;P&gt;I would like to detect regular activity with specific URL (or host) from HTTP Proxy logs.&lt;BR /&gt;
In detail, for example, To detect specific host or URL which someone regularly request for from many many host. Regardless of how long span the regularly activity occurred.&lt;BR /&gt;
that is, it may be occurred per an hour, or per a day, or per a month...&lt;/P&gt;

&lt;P&gt;I tried some commands like "gentimes", "map", "trendline"..., but none of them solved my problem.&lt;/P&gt;

&lt;P&gt;What statement should i write?&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jan 2015 12:51:37 GMT</pubDate>
    <dc:creator>souhei</dc:creator>
    <dc:date>2015-01-08T12:51:37Z</dc:date>
    <item>
      <title>How to detect regular activity from logs.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179179#M35910</link>
      <description>&lt;P&gt;Hi, splunk community.&lt;/P&gt;

&lt;P&gt;I would like to detect regular activity with specific URL (or host) from HTTP Proxy logs.&lt;BR /&gt;
In detail, for example, To detect specific host or URL which someone regularly request for from many many host. Regardless of how long span the regularly activity occurred.&lt;BR /&gt;
that is, it may be occurred per an hour, or per a day, or per a month...&lt;/P&gt;

&lt;P&gt;I tried some commands like "gentimes", "map", "trendline"..., but none of them solved my problem.&lt;/P&gt;

&lt;P&gt;What statement should i write?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2015 12:51:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179179#M35910</guid>
      <dc:creator>souhei</dc:creator>
      <dc:date>2015-01-08T12:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect regular activity from logs.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179180#M35911</link>
      <description>&lt;P&gt;Hi souhei,&lt;BR /&gt;
just a simple approach if regular means same URL, you could use &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... |stats  stats count by URL
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;assuming &lt;STRONG&gt;URL&lt;/STRONG&gt; is the field containing the URL&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2015 13:02:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179180#M35911</guid>
      <dc:creator>FritzWittwer_ol</dc:creator>
      <dc:date>2015-01-08T13:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect regular activity from logs.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179181#M35912</link>
      <description>&lt;P&gt;Hi &lt;BR /&gt;
Just my five Cents, I’d try to use a field extractions so I have &lt;A href="http://hogehoge.com"&gt;http://hogehoge.com&lt;/A&gt; in a field Url, and then  &lt;/P&gt;

&lt;P&gt;…| stats count by Url | sort -count&lt;/P&gt;

&lt;P&gt;Would give you a list of the repeated URLs requested.&lt;/P&gt;

&lt;P&gt;Fritz&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 07:09:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179181#M35912</guid>
      <dc:creator>FritzWittwer_ol</dc:creator>
      <dc:date>2015-01-09T07:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect regular activity from logs.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179182#M35913</link>
      <description>&lt;P&gt;and I add my two cents: in addition to the field URL add also a field called &lt;CODE&gt;action&lt;/CODE&gt; and get &lt;CODE&gt;POST&lt;/CODE&gt; and &lt;CODE&gt;GET&lt;/CODE&gt; into this field. This way get not only the URL count but also what kind of action was done against this URL...like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | stats count by URL, action | ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 07:43:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179182#M35913</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-01-09T07:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect regular activity from logs.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179183#M35914</link>
      <description>&lt;P&gt;Thank you in advance for your best kindness, FritsWittwer, MuS.&lt;/P&gt;

&lt;P&gt;but, My view point is not "number" of request, but "regularity" of request...&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 08:16:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179183#M35914</guid>
      <dc:creator>souhei</dc:creator>
      <dc:date>2015-01-09T08:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect regular activity from logs.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179184#M35915</link>
      <description>&lt;P&gt;simply add &lt;CODE&gt;_time&lt;/CODE&gt; and create a nice chart to graph it and you should see want you want:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | timechart count by URL| ... 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | chart count(action) over _time by URL | ....
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jan 2015 08:21:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179184#M35915</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-01-09T08:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect regular activity from logs.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179185#M35916</link>
      <description>&lt;P&gt;Thank you for your comment, MuS.&lt;/P&gt;

&lt;P&gt;I will try your suggestion.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 10:12:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-detect-regular-activity-from-logs/m-p/179185#M35916</guid>
      <dc:creator>souhei</dc:creator>
      <dc:date>2015-01-09T10:12:11Z</dc:date>
    </item>
  </channel>
</rss>

