<?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: Splunk License Usage message in Monitoring Splunk</title>
    <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234523#M7992</link>
    <description>&lt;P&gt;Hi athorat,&lt;/P&gt;

&lt;P&gt;Splunk license model is based on the license usage within 24 hours of the day; therefore Splunk will only keep track of the license usage for the current day.&lt;BR /&gt;
You can get some historical data from &lt;CODE&gt;metrics.log&lt;/CODE&gt; but be aware that it will not be 100% precise, because &lt;CODE&gt;By default, metrics.log reports the top 10 results for each type.&lt;/CODE&gt; see docs &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.0/Troubleshooting/Aboutmetricslog"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.0/Troubleshooting/Aboutmetricslog&lt;/A&gt; and it's only available for the last 30 days, because the default retention of &lt;CODE&gt;index=_internal&lt;/CODE&gt; is 30 days.&lt;/P&gt;

&lt;P&gt;You can setup above search &lt;A href="http://answers.splunk.com/comments/310738/view.html"&gt;http://answers.splunk.com/comments/310738/view.html&lt;/A&gt; as saved search and summary index the results to keep it for more than 30 days.&lt;/P&gt;

&lt;P&gt;Hope this helps ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
    <pubDate>Thu, 24 Sep 2015 21:51:16 GMT</pubDate>
    <dc:creator>MuS</dc:creator>
    <dc:date>2015-09-24T21:51:16Z</dc:date>
    <item>
      <title>Splunk License Usage message</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234519#M7988</link>
      <description>&lt;P&gt;We have the license to consume 500 GB or DATA . Yesterday we consumed around 103 gb of Data.&lt;/P&gt;

&lt;P&gt;And today we see a message in Splunk: Search peer p01apl302.XXX.XX.com has the following message: License warning issued within past 24 hours (Please refer to the License Usage Report view on license master p01apl304.XXX.XX.com to find out more). Wed Sep 23 00:00:00 2015 MST&lt;/P&gt;

&lt;P&gt;On the cluster master : Licensing » License Usage Reporting&lt;BR /&gt;
Today's License Usage (GB) : 26 GB &lt;BR /&gt;
Today's Percentage of Daily License Quota Used per Pool : Used %42GB&lt;BR /&gt;
Pool Warning Information: Current Quota in GB shows 48&lt;/P&gt;

&lt;P&gt;Its confusing as to why we are getting the license usage message and what is the actual usage &lt;/P&gt;

&lt;P&gt;If I run the query &lt;BR /&gt;
index="_internal" source="*metrics.log" per_index_thruput | eval GB=kb/(1024*1024) |timechart span=d sum(GB)&lt;BR /&gt;
It shows the usage as 54GB for today.&lt;/P&gt;

&lt;P&gt;Any inputs appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 07:19:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234519#M7988</guid>
      <dc:creator>athorat</dc:creator>
      <dc:date>2020-09-29T07:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk License Usage message</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234520#M7989</link>
      <description>&lt;P&gt;Go to licensing page in your license master server, and check the usage there (just below the "Splunk Enterprise stack"). THis should give you current capacity and current usage by pool (if you've created multiple pool, all will be listed here, otherwise default "auto_generated_pool_enterprise").&lt;/P&gt;

&lt;P&gt;&lt;A href="http://YourLicenseServer:webPort/en-US/manager/system/licensing" target="_blank"&gt;http://YourLicenseServer:webPort/en-US/manager/system/licensing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 07:20:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234520#M7989</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2020-09-29T07:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk License Usage message</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234521#M7990</link>
      <description>&lt;P&gt;In addition you can run this little search on your License Master:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest splunk_server=local /services/licenser/pools | rename title AS Pool | search [rest splunk_server=local /services/licenser/groups | search is_active=1 | eval stack_id=stack_ids | fields stack_id] | join type=outer stack_id [rest splunk_server=local /services/licenser/stacks | eval stack_id=title | eval stack_quota=quota | fields stack_id stack_quota] | stats sum(used_bytes) as used_in_bytes max(stack_quota) as License_in_bytes | eval used_in_MB=round(used_in_bytes/1024/1024,3) | eval License_in_MB=round(License_in_bytes/1024/1024,3) | eval used_in_GB=round(used_in_bytes/1024/1024/1024,3) | eval License_in_GB=round(License_in_bytes/1024/1024/1024,3) | table License_in_bytes used_in_bytes License_in_MB used_in_MB License_in_GB used_in_GB
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Reports back a little table of the License usage as in &lt;CODE&gt;bytes&lt;/CODE&gt;, &lt;CODE&gt;MB&lt;/CODE&gt; and &lt;CODE&gt;GB&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 03:49:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234521#M7990</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-09-24T03:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk License Usage message</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234522#M7991</link>
      <description>&lt;P&gt;@MuS&lt;BR /&gt;
I see that we have 500 GB of license and the current usage is 148 GB for TODAY, assuming this query runs only for the day.&lt;BR /&gt;
I am not able to see the usage for any other dates. &lt;BR /&gt;
Is there a way to run this query from the search head  and for any specific dates.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 18:45:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234522#M7991</guid>
      <dc:creator>athorat</dc:creator>
      <dc:date>2015-09-24T18:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk License Usage message</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234523#M7992</link>
      <description>&lt;P&gt;Hi athorat,&lt;/P&gt;

&lt;P&gt;Splunk license model is based on the license usage within 24 hours of the day; therefore Splunk will only keep track of the license usage for the current day.&lt;BR /&gt;
You can get some historical data from &lt;CODE&gt;metrics.log&lt;/CODE&gt; but be aware that it will not be 100% precise, because &lt;CODE&gt;By default, metrics.log reports the top 10 results for each type.&lt;/CODE&gt; see docs &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.0/Troubleshooting/Aboutmetricslog"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.0/Troubleshooting/Aboutmetricslog&lt;/A&gt; and it's only available for the last 30 days, because the default retention of &lt;CODE&gt;index=_internal&lt;/CODE&gt; is 30 days.&lt;/P&gt;

&lt;P&gt;You can setup above search &lt;A href="http://answers.splunk.com/comments/310738/view.html"&gt;http://answers.splunk.com/comments/310738/view.html&lt;/A&gt; as saved search and summary index the results to keep it for more than 30 days.&lt;/P&gt;

&lt;P&gt;Hope this helps ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 21:51:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-License-Usage-message/m-p/234523#M7992</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-09-24T21:51:16Z</dc:date>
    </item>
  </channel>
</rss>

