<?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 Why is indexing volume not matching license usage? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-indexing-volume-not-matching-license-usage/m-p/273200#M52441</link>
    <description>&lt;P&gt;Following some runaway license violations, I am looking to find the offending host but in running the queries that I have, I am finding that the total "host usage" is far more than the "license usage".&lt;/P&gt;

&lt;P&gt;I am using the following to show the usage per host:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="_internal" source="*metrics.log" group="per_host_thruput" | eval mb = (round(kb,0)/1024) |chart sum(mb) by series | sort - sum(mb)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am using the following to find the usage against the license:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage* type=RolloverSummary  | bucket _time span=1d | eval MB_vol=b/1024/1024 | timechart span=1d sum(MB_vol) by pool
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is this correct?  Is this related to this post? -- &lt;A href="https://answers.splunk.com/answers/2886/indexing-volume-vs-data-size-received.html?utm_source=typeahead&amp;amp;utm_medium=newquestion&amp;amp;utm_campaign=no_votes_sort_relev"&gt;https://answers.splunk.com/answers/2886/indexing-volume-vs-data-size-received.html?utm_source=typeahead&amp;amp;utm_medium=newquestion&amp;amp;utm_campaign=no_votes_sort_relev&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Oct 2016 12:44:42 GMT</pubDate>
    <dc:creator>leonards1</dc:creator>
    <dc:date>2016-10-26T12:44:42Z</dc:date>
    <item>
      <title>Why is indexing volume not matching license usage?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-indexing-volume-not-matching-license-usage/m-p/273200#M52441</link>
      <description>&lt;P&gt;Following some runaway license violations, I am looking to find the offending host but in running the queries that I have, I am finding that the total "host usage" is far more than the "license usage".&lt;/P&gt;

&lt;P&gt;I am using the following to show the usage per host:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="_internal" source="*metrics.log" group="per_host_thruput" | eval mb = (round(kb,0)/1024) |chart sum(mb) by series | sort - sum(mb)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am using the following to find the usage against the license:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage* type=RolloverSummary  | bucket _time span=1d | eval MB_vol=b/1024/1024 | timechart span=1d sum(MB_vol) by pool
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is this correct?  Is this related to this post? -- &lt;A href="https://answers.splunk.com/answers/2886/indexing-volume-vs-data-size-received.html?utm_source=typeahead&amp;amp;utm_medium=newquestion&amp;amp;utm_campaign=no_votes_sort_relev"&gt;https://answers.splunk.com/answers/2886/indexing-volume-vs-data-size-received.html?utm_source=typeahead&amp;amp;utm_medium=newquestion&amp;amp;utm_campaign=no_votes_sort_relev&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 12:44:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-indexing-volume-not-matching-license-usage/m-p/273200#M52441</guid>
      <dc:creator>leonards1</dc:creator>
      <dc:date>2016-10-26T12:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why is indexing volume not matching license usage?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-indexing-volume-not-matching-license-usage/m-p/273201#M52442</link>
      <description>&lt;P&gt;&lt;CODE&gt;type=RolloverSummary&lt;/CODE&gt; will only show the top 10 indexes.  To see the total by host you can do something like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="_internal" source=*license_usage.log type=Usage | eval KB=round(b/1024) | eval MB=round(KB/1024,2) | eval GB=round(MB/1024,2) | eval TB=round(GB/1024,2) | stats sum(MB) as Total by h
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or by pool and day:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage* type=Usage | bucket _time span=1d | eval MB_vol=b/1024/1024 | stats (MB_vol) by pool _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Oct 2016 18:53:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-indexing-volume-not-matching-license-usage/m-p/273201#M52442</guid>
      <dc:creator>masonmorales</dc:creator>
      <dc:date>2016-10-26T18:53:22Z</dc:date>
    </item>
  </channel>
</rss>

