<?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 do I find which host is using the most data in Splunk 6.2.2 and causing a license violation? in Installation</title>
    <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231781#M3629</link>
    <description>&lt;P&gt;Just updated the answer and the search&lt;/P&gt;</description>
    <pubDate>Wed, 11 Nov 2015 20:14:19 GMT</pubDate>
    <dc:creator>MuS</dc:creator>
    <dc:date>2015-11-11T20:14:19Z</dc:date>
    <item>
      <title>How do I find which host is using the most data in Splunk 6.2.2 and causing a license violation?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231776#M3624</link>
      <description>&lt;P&gt;I am using Splunk 6.2.2 and all of a sudden, I am violating my indexing license. When I run the License Usage Report split by Host, the large chunk of data is returned to as the host "OTHER".&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 23:20:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231776#M3624</guid>
      <dc:creator>duanehare</dc:creator>
      <dc:date>2020-06-22T23:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I find which host is using the most data in Splunk 6.2.2 and causing a license violation?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231777#M3625</link>
      <description>&lt;P&gt;Hi duanehare,&lt;/P&gt;

&lt;P&gt;run this search, which is basically the same from the license usage report but with added &lt;CODE&gt;useother=f usenull=f&lt;/CODE&gt; so you no longer have the &lt;CODE&gt;OTHER&lt;/CODE&gt; group in the time chart:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage.log type="Usage" | eval h=if(len(h)=0 OR isnull(h),"(SQUASHED)",h) | eval s=if(len(s)=0 OR isnull(s),"(SQUASHED)",s) | eval idx=if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | bin _time span=1d | stats sum(b) as b by _time, pool, s, st, h, idx   | join _time pool type=outer [search index=_internal source=*license_usage.log type="RolloverSummary" earliest=-30d@d | eval _time=_time - 43200 | bin _time span=1d | stats latest(stacksz) AS stacksz by slave, pool, _time | stats max(stacksz) AS stacksz by _time, pool] | stats sum(b) AS bytes_used max(stacksz) AS stacksz by h, _time | timechart span=1d max(eval(round(bytes_used/stacksz*100,2))) by h fixedrange=false useother=f usenull=f
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2015 19:56:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231777#M3625</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-11-10T19:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I find which host is using the most data in Splunk 6.2.2 and causing a license violation?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231778#M3626</link>
      <description>&lt;P&gt;I ran this query and it returned 0 events.  Suggestions?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Nov 2015 20:01:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231778#M3626</guid>
      <dc:creator>duanehare</dc:creator>
      <dc:date>2015-11-11T20:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I find which host is using the most data in Splunk 6.2.2 and causing a license violation?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231779#M3627</link>
      <description>&lt;P&gt;do you have access to &lt;CODE&gt;index=_internal&lt;/CODE&gt; ? run this search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=_internal host=indexer source=*license_usage.log type="Usage"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The above search is the one from the License Usage Report, just added the &lt;CODE&gt;useother=f usenull=f&lt;/CODE&gt; options....&lt;/P&gt;</description>
      <pubDate>Wed, 11 Nov 2015 20:12:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231779#M3627</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-11-11T20:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I find which host is using the most data in Splunk 6.2.2 and causing a license violation?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231780#M3628</link>
      <description>&lt;P&gt;ahh just found the error &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; remove &lt;CODE&gt;host=indexer&lt;/CODE&gt; from the search !&lt;/P&gt;</description>
      <pubDate>Wed, 11 Nov 2015 20:13:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231780#M3628</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-11-11T20:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I find which host is using the most data in Splunk 6.2.2 and causing a license violation?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231781#M3629</link>
      <description>&lt;P&gt;Just updated the answer and the search&lt;/P&gt;</description>
      <pubDate>Wed, 11 Nov 2015 20:14:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231781#M3629</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-11-11T20:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do I find which host is using the most data in Splunk 6.2.2 and causing a license violation?</title>
      <link>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231782#M3630</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;Please try the below one,&lt;/P&gt;

&lt;P&gt;index=_internal source=*license_usage.log type=Usage &lt;BR /&gt;
 | stats sum(b) as bytes by h &lt;BR /&gt;
 | eval MB = round(bytes/1024/1024,1)&lt;BR /&gt;
 | fields h MB&lt;BR /&gt;
 | rename h as host&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 07:54:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-do-I-find-which-host-is-using-the-most-data-in-Splunk-6-2-2/m-p/231782#M3630</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2020-09-29T07:54:11Z</dc:date>
    </item>
  </channel>
</rss>

