<?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: Determination of license usage in Installation</title>
    <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230217#M8993</link>
    <description>&lt;P&gt;Also be aware that there are different types of events in the license_usage.log. RolloverSummary is the one you want to use to determine overall volume.  &lt;/P&gt;</description>
    <pubDate>Thu, 17 Nov 2016 16:35:27 GMT</pubDate>
    <dc:creator>dbourg_splunk</dc:creator>
    <dc:date>2016-11-17T16:35:27Z</dc:date>
    <item>
      <title>Determination of license usage</title>
      <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230212#M8988</link>
      <description>&lt;P&gt;How to determine max license usage of various indexers in GB for past 30 days also how to convert the KB to GB?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 13:43:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230212#M8988</guid>
      <dc:creator>Gayathirik</dc:creator>
      <dc:date>2016-11-16T13:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Determination of license usage</title>
      <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230213#M8989</link>
      <description>&lt;P&gt;The Distributed Management Console (DMC) will show license usage by index for the last 30 days.  Click Settings-&amp;gt;Distributed Management Console then click Indexing-&amp;gt;License Usage-&amp;gt;License Usage - Past 30 days.  Select "By Indexer" from the Split By drop-down.&lt;BR /&gt;
Convert KB to GB by dividing by 1024.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 15:14:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230213#M8989</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2016-11-16T15:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Determination of license usage</title>
      <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230214#M8990</link>
      <description>&lt;P&gt;I need to check on the license utilization of different indexers which are in bytes and to convert it to GB for the past 30 days.&lt;/P&gt;

&lt;P&gt;If you can provide me with the query then it would help!!! &lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 08:23:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230214#M8990</guid>
      <dc:creator>Gayathirik</dc:creator>
      <dc:date>2016-11-17T08:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Determination of license usage</title>
      <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230215#M8991</link>
      <description>&lt;P&gt;I still say the DMC is the better approach, but this query may also help.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license* | stats sum(b) as Bytes by splunk_server | eval GB=Bytes/1024/1024/1024 | table splunk_server GB
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Nov 2016 15:41:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230215#M8991</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2016-11-17T15:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Determination of license usage</title>
      <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230216#M8992</link>
      <description>&lt;P&gt;Here is the query I use&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source="*license_usage.log" type=RolloverSummary | timechart span=1d sum(b) AS DailyVolume | eval DailyVolume=round(DailyVolume/1024/1024/1024,2) | eval License="5"|rename DailyVolume as "Daily Usage"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Change the eval License="5" to whatever your license number is&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 15:45:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230216#M8992</guid>
      <dc:creator>dbcase</dc:creator>
      <dc:date>2016-11-17T15:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Determination of license usage</title>
      <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230217#M8993</link>
      <description>&lt;P&gt;Also be aware that there are different types of events in the license_usage.log. RolloverSummary is the one you want to use to determine overall volume.  &lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 16:35:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230217#M8993</guid>
      <dc:creator>dbourg_splunk</dc:creator>
      <dc:date>2016-11-17T16:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Determination of license usage</title>
      <link>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230218#M8994</link>
      <description>&lt;P&gt;@richgalloway has the best answer to this (DMC). The answer from @dbcase is correct if you want to see your total license usage, but it is not split by indexer.  Is there something in particular you are trying to determine at the indexer level?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 16:36:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Determination-of-license-usage/m-p/230218#M8994</guid>
      <dc:creator>dbourg_splunk</dc:creator>
      <dc:date>2016-11-17T16:36:38Z</dc:date>
    </item>
  </channel>
</rss>

