<?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 time of log sources in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113433#M29831</link>
    <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;I have some forwarders installed in my environment and want to calculate the peak time in which log sources forwarded the logs. I have around 15 Universal forwarders installed and looking to create a unified report for all the log sources peak time.(hourly basis). for example If my Log Source A, has send the maximum no of logs between 2-3 pm. SOme thing of that sort.&lt;/P&gt;

&lt;P&gt;I would greatly appreciate any help.!!&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Lohit&lt;/P&gt;</description>
    <pubDate>Thu, 24 Oct 2013 12:26:12 GMT</pubDate>
    <dc:creator>lohit</dc:creator>
    <dc:date>2013-10-24T12:26:12Z</dc:date>
    <item>
      <title>peak time of log sources</title>
      <link>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113433#M29831</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;I have some forwarders installed in my environment and want to calculate the peak time in which log sources forwarded the logs. I have around 15 Universal forwarders installed and looking to create a unified report for all the log sources peak time.(hourly basis). for example If my Log Source A, has send the maximum no of logs between 2-3 pm. SOme thing of that sort.&lt;/P&gt;

&lt;P&gt;I would greatly appreciate any help.!!&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Lohit&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2013 12:26:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113433#M29831</guid>
      <dc:creator>lohit</dc:creator>
      <dc:date>2013-10-24T12:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: peak time of log sources</title>
      <link>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113434#M29832</link>
      <description>&lt;P&gt;Lohit&lt;/P&gt;

&lt;P&gt;You could use the license usage logs, something like the following will show how much is being indexed by each UF over time.&lt;/P&gt;

&lt;P&gt;index=_internal source=*license_usage.log type=Usage | eval MB=b/1024/1024| rename h as host | timechart span=1h sum(MB) AS IndexedMB by host&lt;/P&gt;

&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:03:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113434#M29832</guid>
      <dc:creator>davebrooking</dc:creator>
      <dc:date>2020-09-28T15:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: peak time of log sources</title>
      <link>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113435#M29833</link>
      <description>&lt;P&gt;the above command shows  the usage of all the forwarder in a particular time frame. I was looking for only the the follwoing format&lt;/P&gt;

&lt;P&gt;Source Peak Time  Amount of Logs&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2013 13:09:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113435#M29833</guid>
      <dc:creator>lohit</dc:creator>
      <dc:date>2013-10-24T13:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: peak time of log sources</title>
      <link>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113436#M29834</link>
      <description>&lt;P&gt;Also i am just looking in timeframe of 1hr(full 24 hrs) of previous day only.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2013 13:18:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113436#M29834</guid>
      <dc:creator>lohit</dc:creator>
      <dc:date>2013-10-24T13:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: peak time of log sources</title>
      <link>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113437#M29835</link>
      <description>&lt;P&gt;You can use this to show the count (rough estimate of volume) by source:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="*" source="*" host="*" |timechart span=1h count by source useother=false limit=50
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or, you can use this to show the count (rough estimate of volume) by host:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="*" source="*" host="*" |timechart span=1h count by host useother=false limit=15
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Use the buttons in the upper left to switch between chart and table view.&lt;/P&gt;

&lt;P&gt;You can try this to show the count by hour, host, and source, but there is too much data for the chart.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="*" source="*" host="*" | bucket _time span=1h |stats count by date_hour,host,source 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Oct 2013 14:20:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113437#M29835</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-10-24T14:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: peak time of log sources</title>
      <link>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113438#M29836</link>
      <description>&lt;P&gt;You can change the initial search to match what you need, but this works to get the top value, with 1h buckets, per host:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;earliest="-1d@d" latest="-0d@d" index=_internal source=*license_usage.log type=Usage s="mylogsourcenamehere" | eval GB=b/1024/1024/1024 | bucket span=1h _time | stats sum(GB) AS GBsum by _time,h | sort -GBsum,h | dedup h
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Enjoy.&lt;BR /&gt;
Jesse&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:36:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/peak-time-of-log-sources/m-p/113438#M29836</guid>
      <dc:creator>jtrucks</dc:creator>
      <dc:date>2013-10-24T15:36:12Z</dc:date>
    </item>
  </channel>
</rss>

