<?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 to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165816#M33631</link>
    <description>&lt;P&gt;Thank you, there is such index.&lt;BR /&gt;
Is there a way to aggregate it by day? It shows data for each 30 sec.&lt;BR /&gt;
Although aggregation like avg is not required, just looking to get any size value per index per day.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Oct 2014 20:58:28 GMT</pubDate>
    <dc:creator>rnr</dc:creator>
    <dc:date>2014-10-16T20:58:28Z</dc:date>
    <item>
      <title>How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165814#M33629</link>
      <description>&lt;P&gt;Hi Splunk experts,&lt;/P&gt;

&lt;P&gt;Here is a search request:&lt;/P&gt;

&lt;P&gt;| eventcount summarize=false report_size=true index=* | eval GB = size_bytes / 1024 / 1024 / 1024 |  eval GB = round(GB, 0) | sort  GB | reverse | head 10&lt;/P&gt;

&lt;P&gt;How can I get these size counters for splunk indexes over period of time, say daily? &lt;BR /&gt;
I'd like to check how fast vol utilization by indexes is growing over time.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:54:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165814#M33629</guid>
      <dc:creator>rnr</dc:creator>
      <dc:date>2020-09-28T17:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165815#M33630</link>
      <description>&lt;P&gt;Just let Splunk do the heavy lifting.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_introspection component=Indexes | timechart avg("data.total_size") by data.name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I believe the introspection index was added in 6.1... so if you're stuck on a lower version you could have your search run daily and summary index the results, then run your report on that summary index.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:21:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165815#M33630</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-10-16T20:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165816#M33631</link>
      <description>&lt;P&gt;Thank you, there is such index.&lt;BR /&gt;
Is there a way to aggregate it by day? It shows data for each 30 sec.&lt;BR /&gt;
Although aggregation like avg is not required, just looking to get any size value per index per day.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:58:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165816#M33631</guid>
      <dc:creator>rnr</dc:creator>
      <dc:date>2014-10-16T20:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165817#M33632</link>
      <description>&lt;P&gt;Right, &lt;CODE&gt;avg()&lt;/CODE&gt; may not be what you're looking for. Consider this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=_introspection component=Indexes | timechart span=1d max("data.total_size") by data.name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That takes exactly one value per index per day, the highest value to be precise.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2014 21:06:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165817#M33632</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-10-16T21:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165818#M33633</link>
      <description>&lt;P&gt;Ok, that did the trick!&lt;/P&gt;

&lt;P&gt;And last question, if I want to have data.total_size in GB - how to apply "eval"?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2014 21:23:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165818#M33633</guid>
      <dc:creator>rnr</dc:creator>
      <dc:date>2014-10-16T21:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165819#M33634</link>
      <description>&lt;P&gt;Easy as pie:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  index=_introspection component=Indexes | eval data.total_size = 'data.total_size' / 1024 | timechart span=1d max("data.total_size") by data.name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Note the use of single quotation marks on the RHS of the &lt;CODE&gt;eval&lt;/CODE&gt; to avoid interpreting the dot as the concatenation operator.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2014 21:26:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165819#M33634</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-10-16T21:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165820#M33635</link>
      <description>&lt;P&gt;All worked, thank you. &lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2014 14:26:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165820#M33635</guid>
      <dc:creator>rnr</dc:creator>
      <dc:date>2014-10-17T14:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165821#M33636</link>
      <description>&lt;P&gt;Running this query, seems to give me what the typical size of a particular index on a single indexer, supposed you have many indexers? Why isn't this adding up and giving a full index size accross all your indexers? How do you add it all up to give you the illusive report that many people have been looking for which is, index size over time.  Finally, this seems to give you 10 indexes only.&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 22:40:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165821#M33636</guid>
      <dc:creator>mendesjo</dc:creator>
      <dc:date>2017-05-02T22:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get size counters for Splunk indexes over a period of time to check how fast volume utilization is growing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165822#M33637</link>
      <description>&lt;P&gt;By now, using the monitoring console in recent versions of splunk should give you that info across all boxes.&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 09:18:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-size-counters-for-Splunk-indexes-over-a-period-of/m-p/165822#M33637</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2017-05-19T09:18:48Z</dc:date>
    </item>
  </channel>
</rss>

