<?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 can I statistic daily indexed log size in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188882#M4108</link>
    <description>&lt;P&gt;You can reference to default alerts in Splunk.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://(your_server):8000/en-US/app/search/reports" target="test_blank"&gt;http://(your_server):8000/en-US/app/search/reports&lt;/A&gt;&lt;BR /&gt;
Click "License Usage Data Cube"&lt;/P&gt;</description>
    <pubDate>Wed, 25 Dec 2013 07:04:13 GMT</pubDate>
    <dc:creator>sunrise</dc:creator>
    <dc:date>2013-12-25T07:04:13Z</dc:date>
    <item>
      <title>How can I statistic daily indexed log size</title>
      <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188876#M4102</link>
      <description>&lt;P&gt;I use Splunk to index the log files from several server, today I have to report the indexed log size everyday as a chart, data is only 1 week for reporting.&lt;/P&gt;

&lt;P&gt;Anyone has idea for creating a query and make a chart&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2013 06:42:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188876#M4102</guid>
      <dc:creator>ndkhoiits</dc:creator>
      <dc:date>2013-12-24T06:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I statistic daily indexed log size</title>
      <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188877#M4103</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;You can use the following request to get the current index size (size in MB):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eventcount summarize=false report_size=true index=* | eval size_MB = round(size_bytes/1024/1024,2) | fields index, size_MB
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;At this point, you can schedule a savedsearch that will populates a summary index including a _time data extracted from the search time itself:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eventcount summarize=false report_size=true index=*
| addinfo
| eval _time=info_search_time
| eval size_MB = round(size_bytes/1024/1024,2)
| fields _time,index,size_MB
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And then finally generates chart based on this summary index.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2013 09:49:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188877#M4103</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2013-12-24T09:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can I statistic daily indexed log size</title>
      <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188878#M4104</link>
      <description>&lt;P&gt;I'm sorry i think i misunderstood your question, as you seem to want to chart an indexed log file and not the index itself.&lt;/P&gt;

&lt;P&gt;You could create a simple shell script that will output time, logfile name, and size, (script input) and index where you want, and then generates charts as you need&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2013 09:51:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188878#M4104</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2013-12-24T09:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I statistic daily indexed log size</title>
      <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188879#M4105</link>
      <description>&lt;P&gt;Thanks for your answer, I'm using Splunk 6, I see there is a feature named 'licenseusage' however the page was rendering with js. So I have to query for the information.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2013 09:53:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188879#M4105</guid>
      <dc:creator>ndkhoiits</dc:creator>
      <dc:date>2013-12-24T09:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: How can I statistic daily indexed log size</title>
      <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188880#M4106</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*metrics.log group=per_index_thruput series=* | eval MB = round(kb/1024,2) | timechart sum(MB) as MB by series
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Will return data indexing informations&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2013 10:08:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188880#M4106</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2013-12-24T10:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I statistic daily indexed log size</title>
      <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188881#M4107</link>
      <description>&lt;P&gt;Thank &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103"&gt;@guilmxm&lt;/a&gt;, however there are no results found with group per_index_thruput&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:32:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188881#M4107</guid>
      <dc:creator>ndkhoiits</dc:creator>
      <dc:date>2020-09-28T15:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: How can I statistic daily indexed log size</title>
      <link>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188882#M4108</link>
      <description>&lt;P&gt;You can reference to default alerts in Splunk.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://(your_server):8000/en-US/app/search/reports" target="test_blank"&gt;http://(your_server):8000/en-US/app/search/reports&lt;/A&gt;&lt;BR /&gt;
Click "License Usage Data Cube"&lt;/P&gt;</description>
      <pubDate>Wed, 25 Dec 2013 07:04:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-can-I-statistic-daily-indexed-log-size/m-p/188882#M4108</guid>
      <dc:creator>sunrise</dc:creator>
      <dc:date>2013-12-25T07:04:13Z</dc:date>
    </item>
  </channel>
</rss>

