<?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 do I determine my indexing volume by host, source, or sourcetype? in Installation</title>
    <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9303#M35</link>
    <description>&lt;P&gt;In the search app that Splunk ships with,  under 'Status',  there is a view called 'Indexing volume'.    Go there and you'll see that it offers precisely this -- you can see your indexing volume broken down over time by source,  by sourcetype, by host or by index. &lt;/P&gt;

&lt;P&gt;Some raw searches themselves are posted in another answer but you'll probably find the custom view the most useful. &lt;/P&gt;</description>
    <pubDate>Thu, 30 Dec 2010 02:46:33 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2010-12-30T02:46:33Z</dc:date>
    <item>
      <title>How do I determine my indexing volume by host, source, or sourcetype?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9299#M31</link>
      <description>&lt;P&gt;I need to know the breakdown of my license consumption on a per host, per source, and per sourcetype basis. What is the search to do this?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2020 23:51:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9299#M31</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2020-06-15T23:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine my indexing volume by host, source, or sourcetype?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9300#M32</link>
      <description>&lt;P&gt;per host:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="_internal" source="*metrics.log" group="per_host_thruput" | chart sum(kb) by series | sort - sum(kb)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;per source:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="_internal" source="*metrics.log" group="per_source_thruput" | chart sum(kb) by series | sort - sum(kb)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;per sourcetype:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="_internal" source="*metrics.log" group="per_sourcetype_thruput" | chart sum(kb) by series | sort - sum(kb)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2010 19:39:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9300#M32</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2010-01-17T19:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine my indexing volume by host, source, or sourcetype?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9301#M33</link>
      <description>&lt;P&gt;While the above search will work for most cases, only the top 10 values over 30 second periods are indexed by default.  For this reason, you may not see low volume hosts populating the search results.  You can increase the number of data points for the metrics.log file by editing the samples taken within limits.conf.  See the following link and look for "metrics":&lt;/P&gt;

&lt;P&gt;&lt;A href="http://www.splunk.com/base/Documentation/latest/Admin/Limitsconf"&gt;http://www.splunk.com/base/Documentation/latest/Admin/Limitsconf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Apr 2010 00:45:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9301#M33</guid>
      <dc:creator>Simeon</dc:creator>
      <dc:date>2010-04-17T00:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine my indexing volume by host, source, or sourcetype?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9302#M34</link>
      <description>&lt;P&gt;Also see the following:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://www.splunk.com/wiki/Community:TroubleshootingIndexedDataVolume"&gt;http://www.splunk.com/wiki/Community:TroubleshootingIndexedDataVolume&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Apr 2010 02:35:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9302#M34</guid>
      <dc:creator>Simeon</dc:creator>
      <dc:date>2010-04-17T02:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine my indexing volume by host, source, or sourcetype?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9303#M35</link>
      <description>&lt;P&gt;In the search app that Splunk ships with,  under 'Status',  there is a view called 'Indexing volume'.    Go there and you'll see that it offers precisely this -- you can see your indexing volume broken down over time by source,  by sourcetype, by host or by index. &lt;/P&gt;

&lt;P&gt;Some raw searches themselves are posted in another answer but you'll probably find the custom view the most useful. &lt;/P&gt;</description>
      <pubDate>Thu, 30 Dec 2010 02:46:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9303#M35</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2010-12-30T02:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine my indexing volume by host, source, or sourcetype?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9304#M36</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=_internal source="*license_usage.log" type=usage type=Usage idx=* pool="Your Pool Name" earliest=-30d@d latest=@d
| eval GB = b
| timechart limit=50 partial=false span=1d sum(eval(GB/1024/1024/1024)) by idx
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This works well for me.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 02:14:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9304#M36</guid>
      <dc:creator>wharmsworth</dc:creator>
      <dc:date>2017-08-10T02:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I determine my indexing volume by host, source, or sourcetype?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9305#M37</link>
      <description>&lt;P&gt;Hi @sideview,&lt;BR /&gt;
Can you please point where exactly the status option is displayed on the Search and Reporting page of Splunk ?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 01:59:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-determine-my-indexing-volume-by-host-source-or/m-p/9305#M37</guid>
      <dc:creator>damode</dc:creator>
      <dc:date>2017-10-13T01:59:03Z</dc:date>
    </item>
  </channel>
</rss>

