<?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 search which monitored log files caused me to exceed my Splunk Light 500MB license limit? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129311#M35163</link>
    <description>&lt;P&gt;This sums up the bytes per source path over the specified time range. As a result, rotated instances of the same source path are added together, and days are added together as well. You can either restrict the time range to single days or change the search like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage* type=Usage | bin span=1d _time | stats sum(b) as bytes by _time h s
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 20 Jul 2015 22:44:58 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2015-07-20T22:44:58Z</dc:date>
    <item>
      <title>How to search which monitored log files caused me to exceed my Splunk Light 500MB license limit?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129308#M35160</link>
      <description>&lt;P&gt;I am using Splunk light and have a &amp;lt;500 MB indexed file license limit. I am using 5 universal forwarders which are all in Windows and 2 local dirs on local Linux (Splunk light server local machine) &lt;BR /&gt;
I checked triple checked that my daily log files won't be bigger than 250 MB. Actually in the last month, the counts all my logs from 6 machines are &amp;lt; 2GB, but in last week I exceeded daily 500 mb quota 5 times and now I can't search! Looks I have to wait &amp;gt;23 days to waiting for the limit released. &lt;/P&gt;

&lt;P&gt;I can only search _internal index now, which are Splunk's own logs. Is there some search I can use to find out the detailed license exceeding process to find out when and what files caused the license violations?&lt;/P&gt;

&lt;P&gt;I am very puzzled how can I exceed the limit so many times last week.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jul 2015 17:08:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129308#M35160</guid>
      <dc:creator>actanzhang</dc:creator>
      <dc:date>2015-07-19T17:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to search which monitored log files caused me to exceed my Splunk Light 500MB license limit?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129309#M35161</link>
      <description>&lt;P&gt;In Splunk Enterprise you can run this search to get you the usage per host-source-combination:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage* type=Usage | stats sum(b) as bytes by h s | sort - bytes
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I guess this log should exist in Splunk Light as well.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jul 2015 20:52:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129309#M35161</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-07-19T20:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to search which monitored log files caused me to exceed my Splunk Light 500MB license limit?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129310#M35162</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;

&lt;P&gt;Thanks! I got the result now. But can you explain more what this query is about? &lt;BR /&gt;
Looks it's telling me the big log file that indexed by splunk order by file size, which yes that what I am looking for, but what confused me is the size of the reported file, &lt;BR /&gt;
3027102191 bytes = 2.8 GB , 2636882398 bytes = 2.45 GB , 616384496 = 587.8 MB, &lt;BR /&gt;
But I really don't have files in such big size, they are all just no more than 15 MB, why splunk found that are so big?&lt;/P&gt;

&lt;P&gt;And from the license usage history, my exceedings are all about 1GB indexes, I have never see 1 day that indexed 2 GB file.&lt;BR /&gt;
Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 04:10:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129310#M35162</guid>
      <dc:creator>actanzhang</dc:creator>
      <dc:date>2015-07-20T04:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to search which monitored log files caused me to exceed my Splunk Light 500MB license limit?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129311#M35163</link>
      <description>&lt;P&gt;This sums up the bytes per source path over the specified time range. As a result, rotated instances of the same source path are added together, and days are added together as well. You can either restrict the time range to single days or change the search like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage* type=Usage | bin span=1d _time | stats sum(b) as bytes by _time h s
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jul 2015 22:44:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129311#M35163</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-07-20T22:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to search which monitored log files caused me to exceed my Splunk Light 500MB license limit?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129312#M35164</link>
      <description>&lt;P&gt;Thanks Martin, you really helped me a lot!!&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 09:35:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-which-monitored-log-files-caused-me-to-exceed-my/m-p/129312#M35164</guid>
      <dc:creator>actanzhang</dc:creator>
      <dc:date>2015-07-22T09:35:08Z</dc:date>
    </item>
  </channel>
</rss>

