<?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 create a report that shows max indexed volume per day by month per index? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115268#M30520</link>
    <description>&lt;P&gt;another query posted that doesn't work.. at least for me.. changing idx to i also gives no results found &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Feb 2016 15:30:46 GMT</pubDate>
    <dc:creator>mendesjo</dc:creator>
    <dc:date>2016-02-02T15:30:46Z</dc:date>
    <item>
      <title>How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115262#M30514</link>
      <description>&lt;P&gt;I need to create a report that shows max indexed volume per day by month per index. The following search gives me the indexing volume per day per index. How can modify this search to get what I need?&lt;/P&gt;

&lt;P&gt;index=_internal source=&lt;EM&gt;license_usage.log&lt;/EM&gt; type=Usage | timechart span=1d sum(eval(b/1024/1024/1024)) AS volume_b by idx&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:31:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115262#M30514</guid>
      <dc:creator>jedatt01</dc:creator>
      <dc:date>2020-09-28T17:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115263#M30515</link>
      <description>&lt;P&gt;index=_internal source=license_usage.log type=Usage | stats sum(eval(b/1024/1024/1024)) AS volume_b by idx date_mday date_month date_year | stats max(volume_b) by idx date_month date_year&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:31:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115263#M30515</guid>
      <dc:creator>imrago</dc:creator>
      <dc:date>2020-09-28T17:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115264#M30516</link>
      <description>&lt;P&gt;Ok that works, but how can I get it in a more readable format?I'd like to have the indexes as columns across the top and each months values as rows. Basically, I timechart by index&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2014 15:55:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115264#M30516</guid>
      <dc:creator>jedatt01</dc:creator>
      <dc:date>2014-09-08T15:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115265#M30517</link>
      <description>&lt;P&gt;index=_internal source=license_usage.log type=Usage | eval yearmonthday=strftime(_time, "%Y%m%d") | eval yearmonth=strftime(_time, "%Y%m") | stats sum(eval(b/1024/1024/1024)) AS volume_b by idx yearmonthday yearmonth | chart max(volume_b) over yearmonth  by  idx&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:31:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115265#M30517</guid>
      <dc:creator>imrago</dc:creator>
      <dc:date>2020-09-28T17:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115266#M30518</link>
      <description>&lt;P&gt;You rock!!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2014 14:22:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115266#M30518</guid>
      <dc:creator>jedatt01</dc:creator>
      <dc:date>2014-09-09T14:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115267#M30519</link>
      <description>&lt;P&gt;Question: This search doesn't work, but if I switch "idx" to "i", it gives me something.  Is there a switch in recent splunk versions to the internal log format?  EDIT: NM, idx is new field for v6+&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2014 14:17:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115267#M30519</guid>
      <dc:creator>essklau</dc:creator>
      <dc:date>2014-09-10T14:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115268#M30520</link>
      <description>&lt;P&gt;another query posted that doesn't work.. at least for me.. changing idx to i also gives no results found &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 15:30:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115268#M30520</guid>
      <dc:creator>mendesjo</dc:creator>
      <dc:date>2016-02-02T15:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115269#M30521</link>
      <description>&lt;P&gt;This worked for me, but I had to use source="*license_usage.log", with the asterisk wildcard for the preceding file path characters.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2017 20:55:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115269#M30521</guid>
      <dc:creator>marciniega</dc:creator>
      <dc:date>2017-03-14T20:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115270#M30522</link>
      <description>&lt;P&gt;Is it MB or GB ?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 15:29:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/115270#M30522</guid>
      <dc:creator>sridhar_venna</dc:creator>
      <dc:date>2020-02-18T15:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/594778#M207011</link>
      <description>&lt;P&gt;How do I use this query to get the data in GB in readable format?&lt;/P&gt;&lt;P&gt;index=_internal source=*license_usage.log type=Usage | timechart span=1d sum(eval(b/1024/1024/1024)) AS volume_b by idx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I also want to see how much data stored in all indexers per day, per month and per year? ,what is the query i can use?&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 03:38:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/594778#M207011</guid>
      <dc:creator>pacifikn</dc:creator>
      <dc:date>2022-04-22T03:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a report that shows max indexed volume per day by month per index?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/594779#M207012</link>
      <description>&lt;P&gt;index=_internal source=*license_usage.log type=Usage | stats sum(eval(b/1024/1024/1024)) AS volume_b by idx date_mday date_month date_year | stats max(volume_b) by idx date_month date_year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;help me to edit this query to get the output in GB and also calculate the total number of all index in GB?&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 03:43:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-report-that-shows-max-indexed-volume-per-day-by/m-p/594779#M207012</guid>
      <dc:creator>pacifikn</dc:creator>
      <dc:date>2022-04-22T03:43:34Z</dc:date>
    </item>
  </channel>
</rss>

