<?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 determine the indexing volume by source in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153574#M31211</link>
    <description>&lt;P&gt;Thank you for your answer MuS.&lt;/P&gt;

&lt;P&gt;If we use the index=&lt;EM&gt;internal source=*license_usage.log type=Usage we also get the top 10 sources and not _all&lt;/EM&gt; sources.&lt;/P&gt;

&lt;P&gt;We have not found the value allowing to log all sources in *metrics.log and had to set arbitrarily the parameter in limits.conf&lt;BR /&gt;
[metrics]&lt;BR /&gt;
maxseries = 100000&lt;/P&gt;

&lt;P&gt;Any help ?&lt;/P&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 16:34:16 GMT</pubDate>
    <dc:creator>laurent_</dc:creator>
    <dc:date>2020-09-28T16:34:16Z</dc:date>
    <item>
      <title>How to determine the indexing volume by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153572#M31209</link>
      <description>&lt;P&gt;On an 'All time' range, the two following searches provide different results. The first one gives the expected result (exhaustive) while the second one is incomplete.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index="my_index" | stats values(source)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index="_internal" source="*metrics.log" group="per_source_thruput" series="/path/to/raw/data/*" | stats by series | fields series&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;We are trying to get the indexing volume by source, according to &lt;A href="http://answers.splunk.com/answers/140/how-do-i-determine-my-indexing-volume-by-host-source-or-sourcetype"&gt;http://answers.splunk.com/answers/140/how-do-i-determine-my-indexing-volume-by-host-source-or-sourcetype&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index="_internal" source="*metrics.log" group="per_source_thruput" series="/path/to/raw/data/*" | chart sum(kb) by series | sort - sum(kb)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;But a lot of sources are missing, any idea ?&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2014 11:52:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153572#M31209</guid>
      <dc:creator>laurent_</dc:creator>
      <dc:date>2014-05-06T11:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the indexing volume by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153573#M31210</link>
      <description>&lt;P&gt;Hi laurent_,&lt;/P&gt;

&lt;P&gt;by default &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.3/Troubleshooting/Aboutmetricslog"&gt;&lt;CODE&gt;metrics.log&lt;/CODE&gt;&lt;/A&gt; only reports on the top 10 results for each type. &lt;BR /&gt;
You can change this in metrics stanza of &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.3/Admin/Limitsconf"&gt;&lt;CODE&gt;limits.conf&lt;/CODE&gt;&lt;/A&gt; &lt;/P&gt;

&lt;P&gt;Update:&lt;/P&gt;

&lt;P&gt;here are some searches that does not use &lt;CODE&gt;metrics.log&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;per source:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage.log type=Usage | eval GB=b/1024/1024/1024 | timechart span=1d sum(GB) by s useother=false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;summary per day per pool for the previous days: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage* type=RolloverSummary | bucket _time span=1d | stats sum(b) AS volume by _time pool
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;per pool: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage.log type=Usage | eval GB=b/1024/1024/1024 | timechart span=1d sum(GB) by pool
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;per sourcetype:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage.log type=Usage | eval GB=b/1024/1024/1024 | timechart span=1d sum(GB) by st useother=false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;per host:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=_internal source=*license_usage.log type=Usage | eval GB=b/1024/1024/1024 | timechart span=1d sum(GB) by h useother=false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;per indexer: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage.log type=Usage | eval GB=b/1024/1024/1024 | timechart span=1d sum(GB) by i useother=false 
&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, 06 May 2014 12:01:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153573#M31210</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2014-05-06T12:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the indexing volume by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153574#M31211</link>
      <description>&lt;P&gt;Thank you for your answer MuS.&lt;/P&gt;

&lt;P&gt;If we use the index=&lt;EM&gt;internal source=*license_usage.log type=Usage we also get the top 10 sources and not _all&lt;/EM&gt; sources.&lt;/P&gt;

&lt;P&gt;We have not found the value allowing to log all sources in *metrics.log and had to set arbitrarily the parameter in limits.conf&lt;BR /&gt;
[metrics]&lt;BR /&gt;
maxseries = 100000&lt;/P&gt;

&lt;P&gt;Any help ?&lt;/P&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:34:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153574#M31211</guid>
      <dc:creator>laurent_</dc:creator>
      <dc:date>2020-09-28T16:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the indexing volume by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153575#M31212</link>
      <description>&lt;P&gt;according to the docs &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.3/Troubleshooting/WhatSplunklogsaboutitself"&gt;http://docs.splunk.com/Documentation/Splunk/6.0.3/Troubleshooting/WhatSplunklogsaboutitself&lt;/A&gt; license_usage.log contains all information, not only top 10.&lt;BR /&gt;
limits.conf is the place for the change, like I told you. Did you restart Splunk afterwards? Also this will only be valid for new events.&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2014 09:44:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153575#M31212</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2014-05-09T09:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the indexing volume by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153576#M31213</link>
      <description>&lt;P&gt;please mark this as answered by ticking the tick - thx &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2014 14:11:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-determine-the-indexing-volume-by-source/m-p/153576#M31213</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2014-05-09T14:11:03Z</dc:date>
    </item>
  </channel>
</rss>

