<?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 Graph of peak traffic measured by hour in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96346#M5258</link>
    <description>&lt;P&gt;I have an apache-like access log and would like to graph the traffic by hour. However, the graph I want is a graph of the number of requests pr. hour divided by 60*60 so that it is easy to identify the busy hour expressed in requests pr. seconds. &lt;/P&gt;

&lt;P&gt;I assume I have to use bins or span, but I have been unsuccessful so far. Any hints?&lt;/P&gt;</description>
    <pubDate>Fri, 06 May 2011 08:11:48 GMT</pubDate>
    <dc:creator>karthy</dc:creator>
    <dc:date>2011-05-06T08:11:48Z</dc:date>
    <item>
      <title>Graph of peak traffic measured by hour</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96346#M5258</link>
      <description>&lt;P&gt;I have an apache-like access log and would like to graph the traffic by hour. However, the graph I want is a graph of the number of requests pr. hour divided by 60*60 so that it is easy to identify the busy hour expressed in requests pr. seconds. &lt;/P&gt;

&lt;P&gt;I assume I have to use bins or span, but I have been unsuccessful so far. Any hints?&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2011 08:11:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96346#M5258</guid>
      <dc:creator>karthy</dc:creator>
      <dc:date>2011-05-06T08:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Graph of peak traffic measured by hour</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96347#M5259</link>
      <description>&lt;P&gt;If you're looking for the average per hour, I'd go this route:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;YourSearch | timechart span=1h count as TotalRequests 
           | eval RequestsPerSecond = TotalRequests/3600
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you wanted to look at the actual busiest second, you could go for:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;YourSearch | bucket _time span=1s 
           | stats count as RequestsPerSec by _time 
           | timechart span=1h avg(RequestsPerSec) Max(RequestsPerSec)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 May 2011 13:49:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96347#M5259</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2011-05-06T13:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Graph of peak traffic measured by hour</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96348#M5260</link>
      <description>&lt;P&gt;Thanks - works just right!&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2011 13:46:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96348#M5260</guid>
      <dc:creator>karthy</dc:creator>
      <dc:date>2011-05-10T13:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Graph of peak traffic measured by hour</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96349#M5261</link>
      <description>&lt;P&gt;Excellent! I'm glad to hear it.&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2011 14:19:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Graph-of-peak-traffic-measured-by-hour/m-p/96349#M5261</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2011-05-10T14:19:57Z</dc:date>
    </item>
  </channel>
</rss>

