<?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 calculate volume of events across various indexes ? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127718#M26251</link>
    <description>&lt;P&gt;All I want to do is create a query that fetches the below result&lt;/P&gt;

&lt;P&gt;Day Index-name Volume&lt;BR /&gt;
4/1 abc        5GB&lt;BR /&gt;
4/2 abc        8GB&lt;BR /&gt;
4/3 abc        10GB&lt;BR /&gt;
4/4 abc        15GB&lt;BR /&gt;
4/5 abc        4GB&lt;BR /&gt;
........&lt;/P&gt;

&lt;P&gt;Can any one help on this regard ? Any help is much appreciated&lt;/P&gt;</description>
    <pubDate>Thu, 10 Apr 2014 21:20:01 GMT</pubDate>
    <dc:creator>xbbj3nj</dc:creator>
    <dc:date>2014-04-10T21:20:01Z</dc:date>
    <item>
      <title>How to calculate volume of events across various indexes ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127718#M26251</link>
      <description>&lt;P&gt;All I want to do is create a query that fetches the below result&lt;/P&gt;

&lt;P&gt;Day Index-name Volume&lt;BR /&gt;
4/1 abc        5GB&lt;BR /&gt;
4/2 abc        8GB&lt;BR /&gt;
4/3 abc        10GB&lt;BR /&gt;
4/4 abc        15GB&lt;BR /&gt;
4/5 abc        4GB&lt;BR /&gt;
........&lt;/P&gt;

&lt;P&gt;Can any one help on this regard ? Any help is much appreciated&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 21:20:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127718#M26251</guid>
      <dc:creator>xbbj3nj</dc:creator>
      <dc:date>2014-04-10T21:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate volume of events across various indexes ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127719#M26252</link>
      <description>&lt;P&gt;The SoS app should give you that out of the box, Indexing -&amp;gt; Indexing Performance -&amp;gt; split by index&lt;BR /&gt;
&lt;A href="http://apps.splunk.com/app/748/"&gt;http://apps.splunk.com/app/748/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 21:42:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127719#M26252</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-04-10T21:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate volume of events across various indexes ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127720#M26253</link>
      <description>&lt;P&gt;Thank you so much !! but what does the Total column indicate.. is it volume in GB ? and i have 2 indexers.. so can i get a one shot view of volume in gb by individual indexes.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 21:53:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127720#M26253</guid>
      <dc:creator>xbbj3nj</dc:creator>
      <dc:date>2014-04-10T21:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate volume of events across various indexes ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127721#M26254</link>
      <description>&lt;P&gt;...app/sos/indexing_performance lets you pick any indexer and can split by index, .../app/sos/indexing_distributed lets you split by indexers but not by index... but this being Splunk, anything can be extended. Taking the queries from those two views, you could build this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;`set_internal_index` source=*metrics.log group=per_index_thruput [inputlookup splunk_servers_cache | search server_role!="search-head" | search server_role!="*forwarder*" | eval host=sos_server | fields host] | timechart minspan=30s per_second(kb) AS KBps by series useother=false limit=100
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:21:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127721#M26254</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2020-09-28T16:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate volume of events across various indexes ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127722#M26255</link>
      <description>&lt;P&gt;You may also want to take a look at &lt;A href="http://host:8000/en-US/app/sos/license_usage_30days"&gt;http://host:8000/en-US/app/sos/license_usage_30days&lt;/A&gt; on your license master, that gives you a volume per day splittable by index.&lt;BR /&gt;
Also available under &lt;A href="http://host:8000/en-US/manager/search/licenseusage"&gt;http://host:8000/en-US/manager/search/licenseusage&lt;/A&gt; not requiring SoS.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 22:05:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-calculate-volume-of-events-across-various-indexes/m-p/127722#M26255</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-04-10T22:05:01Z</dc:date>
    </item>
  </channel>
</rss>

