<?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: Breakdown by Sourcetype from Each Forwarder in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34299#M6218</link>
    <description>&lt;P&gt;It's not doing any local indexing, but by default it's also not forwarding anything which would have landed in its _internal index (like the metrics.log) either.  In any event, you might consider reading through the metrics.log directly on the forwarder itself ($SPLUNK_HOME/var/log/splunk).  Instead of a Splunk search, you'll be doing a grep (for group=per_sourcetype_thruput) and some awk.  My point about forwarding _internal data from the forwarder would still be useful in situations like this.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 11:43:02 GMT</pubDate>
    <dc:creator>sowings</dc:creator>
    <dc:date>2020-09-28T11:43:02Z</dc:date>
    <item>
      <title>Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34294#M6213</link>
      <description>&lt;P&gt;We have a number of heavy forwarders sending cooked data to our indexers. We can get the total KBs sent by each forwarder by searching the metrics.log files. Is there a way to get a breakdown by sourcetype of data sent by each forwarder? Maybe this is a search that we can run from each forwarder?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 13:30:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34294#M6213</guid>
      <dc:creator>reed_kelly</dc:creator>
      <dc:date>2012-04-24T13:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34295#M6214</link>
      <description>&lt;P&gt;Hi reed.kelly&lt;/P&gt;

&lt;P&gt;haven't checked it yet, but isn't there some saved search like that in the deployment app?&lt;/P&gt;

&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 14:17:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34295#M6214</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2012-04-24T14:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34296#M6215</link>
      <description>&lt;P&gt;I see total volume for each forwarder, but not a breakdown of the sourcetypes coming from each forwarder.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 14:25:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34296#M6215</guid>
      <dc:creator>reed_kelly</dc:creator>
      <dc:date>2012-04-24T14:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34297#M6216</link>
      <description>&lt;P&gt;If the heavy forwarder is sending over its own _internal indexing data (it doesn't by default, check forwardedindex.* in outputs.conf), you could utilize a metrics search (group=per_sourcetype_thruput) like the following:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=_internal source=*metrics.log group=per_sourcetype_thruput | stats count by host, series&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;You'll get some of the "internal" sourcetypes which map to data that goes to the _internal index, like "audittrail" and "scheduler", etc, but it's a start.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:42:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34297#M6216</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2020-09-28T11:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34298#M6217</link>
      <description>&lt;P&gt;Thanks for your answer, but I think I wasn't clear enough. The heavy forwarder is not doing any local indexing. I want to know how much of each sourcetype it is sending on it's tcpout stream.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 15:59:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34298#M6217</guid>
      <dc:creator>reed_kelly</dc:creator>
      <dc:date>2012-04-24T15:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34299#M6218</link>
      <description>&lt;P&gt;It's not doing any local indexing, but by default it's also not forwarding anything which would have landed in its _internal index (like the metrics.log) either.  In any event, you might consider reading through the metrics.log directly on the forwarder itself ($SPLUNK_HOME/var/log/splunk).  Instead of a Splunk search, you'll be doing a grep (for group=per_sourcetype_thruput) and some awk.  My point about forwarding _internal data from the forwarder would still be useful in situations like this.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:43:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34299#M6218</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2020-09-28T11:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34300#M6219</link>
      <description>&lt;P&gt;I tried that, but&lt;BR /&gt;
  grep sourcetype $SPLUNK_HOME/var/log/splunk/metric*&lt;BR /&gt;
doesn't return anything on the forwarder.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 17:39:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34300#M6219</guid>
      <dc:creator>reed_kelly</dc:creator>
      <dc:date>2012-04-24T17:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34301#M6220</link>
      <description>&lt;P&gt;In the Search app, the third panel down, the panel on the left displays all the sourcetypes and some data about them. Is this what you seek?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 17:44:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34301#M6220</guid>
      <dc:creator>rgcurry</dc:creator>
      <dc:date>2012-04-24T17:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34302#M6221</link>
      <description>&lt;P&gt;I think you are referring to the Summary view in the Search app. This shows counts by sourcetype, but I want count by sourcetype, &lt;FORWARDER_IT_CAME_FROM&gt;&lt;/FORWARDER_IT_CAME_FROM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 17:51:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34302#M6221</guid>
      <dc:creator>reed_kelly</dc:creator>
      <dc:date>2012-04-24T17:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34303#M6222</link>
      <description>&lt;P&gt;The data in that panel is coming from a search starting with &lt;CODE&gt;|metadata type=host&lt;/CODE&gt;.  This metadata is not simultaneously differentiated by host and by sourcetype (the left panel is sourcetype, ignoring host, the right panel is host, ignoring sourcetype).  I don't know offhand why you're not seeing per_sourcetype_thruput in the forwarder's logs, perhaps it doesn't get logged there.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 18:23:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34303#M6222</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2012-04-24T18:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Breakdown by Sourcetype from Each Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34304#M6223</link>
      <description>&lt;P&gt;Does this give you what you are looking for?&lt;/P&gt;

&lt;P&gt;index=* sourcetype=* | fields host, sourcetype | sort host | cluster   | stats count by host, sourcetype | fields host,sourcetype&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 20:40:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Breakdown-by-Sourcetype-from-Each-Forwarder/m-p/34304#M6223</guid>
      <dc:creator>rgcurry</dc:creator>
      <dc:date>2012-04-24T20:40:07Z</dc:date>
    </item>
  </channel>
</rss>

