<?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 Peak hours of the week by total daily percentage in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348294#M103134</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I need to display the peak times of day that events are occurring. Essentially, I want to find out the peak times of the week that people are logging into my web application but I want to display this by the percent of the daily total&lt;/P&gt;

&lt;P&gt;I have my search here -  &lt;EM&gt;host="" AND "" AND "GET" AND ""&lt;/EM&gt;  This brings the results that I need.&lt;/P&gt;

&lt;P&gt;Any help with this would be massively appreciated.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;BR /&gt;
Lee&lt;/P&gt;</description>
    <pubDate>Wed, 08 Mar 2017 11:09:50 GMT</pubDate>
    <dc:creator>SecureIA</dc:creator>
    <dc:date>2017-03-08T11:09:50Z</dc:date>
    <item>
      <title>Peak hours of the week by total daily percentage</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348294#M103134</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I need to display the peak times of day that events are occurring. Essentially, I want to find out the peak times of the week that people are logging into my web application but I want to display this by the percent of the daily total&lt;/P&gt;

&lt;P&gt;I have my search here -  &lt;EM&gt;host="" AND "" AND "GET" AND ""&lt;/EM&gt;  This brings the results that I need.&lt;/P&gt;

&lt;P&gt;Any help with this would be massively appreciated.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;BR /&gt;
Lee&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 11:09:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348294#M103134</guid>
      <dc:creator>SecureIA</dc:creator>
      <dc:date>2017-03-08T11:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Peak hours of the week by total daily percentage</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348295#M103135</link>
      <description>&lt;P&gt;Try this. You can change the  &lt;CODE&gt;span&lt;/CODE&gt; component to get higher or lower resolution.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=iis
| timechart span=15m dc(cs_username) as count
| eval day = tonumber(strftime(_time,"%j")) 
| fillnull value=0 count 
| eventstats sum(count) as day_total by day 
| eval perc = round(100* (count/day_total),2) 
| fields - count day day_total
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Mar 2017 11:23:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348295#M103135</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2017-03-08T11:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Peak hours of the week by total daily percentage</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348296#M103136</link>
      <description>&lt;P&gt;Thank you so much for your reply. I'm sorry my example search was wrong. &lt;/P&gt;

&lt;P&gt;My original search is - sourcetype=iis | eval users=cs_username | timechart span=1d dc(users)&lt;/P&gt;

&lt;P&gt;Would this change the search string much? I have replaced count with dc(users) in the hope that it would work&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 11:37:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348296#M103136</guid>
      <dc:creator>SecureIA</dc:creator>
      <dc:date>2017-03-08T11:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Peak hours of the week by total daily percentage</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348297#M103137</link>
      <description>&lt;P&gt;I updated my original answer to reflect your search. Please respond to my answer using the "Add Comment" link below it if you have more questions or issues. Otherwise, please accept the answer if it works for you.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 11:51:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348297#M103137</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2017-03-08T11:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Peak hours of the week by total daily percentage</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348298#M103138</link>
      <description>&lt;P&gt;That is exactly what I needed. Thank you so much!!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 12:03:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Peak-hours-of-the-week-by-total-daily-percentage/m-p/348298#M103138</guid>
      <dc:creator>SecureIA</dc:creator>
      <dc:date>2017-03-08T12:03:47Z</dc:date>
    </item>
  </channel>
</rss>

