<?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: Calculating  Source type info  indexing rate and EPS in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363508#M162158</link>
    <description>&lt;P&gt;I just need calculate  index=* sourcetype=*  not  from  internal index&lt;/P&gt;</description>
    <pubDate>Mon, 19 Mar 2018 15:46:28 GMT</pubDate>
    <dc:creator>Splunk_rocks</dc:creator>
    <dc:date>2018-03-19T15:46:28Z</dc:date>
    <item>
      <title>Calculating  Source type info  indexing rate and EPS</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363505#M162155</link>
      <description>&lt;P&gt;Hello Splunkers, &lt;/P&gt;

&lt;P&gt;I would like to calculate below EPS values for 30 days time period  for each source type  on one combined search and i have individual searches but just want to see if i can get some thing here.&lt;/P&gt;

&lt;P&gt;Average Event Size EPS (KBPS)&lt;BR /&gt;
Max EPS (KBPS)&lt;BR /&gt;
Average EPS (KB)&lt;BR /&gt;
General EPS (KB)&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 13:30:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363505#M162155</guid>
      <dc:creator>Splunk_rocks</dc:creator>
      <dc:date>2018-03-19T13:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  Source type info  indexing rate and EPS</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363506#M162156</link>
      <description>&lt;P&gt;If you're running the latest version, some of that info is on the Index Activity dashboard, and you can use that search as a start.&lt;/P&gt;

&lt;P&gt;Change out the calc for measuring max, min, avg, etc &lt;BR /&gt;
EG:&lt;BR /&gt;
timechart avg(kbps) by series&lt;BR /&gt;
timechart max(kbps) by series&lt;/P&gt;

&lt;P&gt;kbps by sourcetype: index="_internal" source=*metrics.log group="per_sourcetype_thruput" | timechart avg(kbps) by series&lt;/P&gt;

&lt;P&gt;eps by sourcetype: index="_internal" source=*metrics.log  group="per_sourcetype_thruput" | timechart avg(eps) by series&lt;/P&gt;

&lt;P&gt;If you wanted host or source, use group="per_source_thruput" or group="per_host_thruput" instead.&lt;/P&gt;

&lt;P&gt;ah, one more suggestion... If you don't want to chart the results in a timeseries, you can swap out the timechart command with the stats command which may be a better fit for the solution you are looking for:&lt;/P&gt;

&lt;P&gt;EG:&lt;BR /&gt;
index="_internal" source=*metrics.log group="per_sourcetype_thruput" | stats avg(eps) by series&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:32:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363506#M162156</guid>
      <dc:creator>damiensurat</dc:creator>
      <dc:date>2020-09-29T18:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  Source type info  indexing rate and EPS</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363507#M162157</link>
      <description>&lt;P&gt;Thanks but i dont have access to DMC so that is why im looking for individual searches .&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 15:27:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363507#M162157</guid>
      <dc:creator>Splunk_rocks</dc:creator>
      <dc:date>2018-03-19T15:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  Source type info  indexing rate and EPS</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363508#M162158</link>
      <description>&lt;P&gt;I just need calculate  index=* sourcetype=*  not  from  internal index&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 15:46:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363508#M162158</guid>
      <dc:creator>Splunk_rocks</dc:creator>
      <dc:date>2018-03-19T15:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  Source type info  indexing rate and EPS</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363509#M162159</link>
      <description>&lt;P&gt;Use tstats and specify the variables:&lt;/P&gt;

&lt;P&gt;• index=main&lt;BR /&gt;
• earliest=-30d&lt;BR /&gt;
• groupby (_time, sourcetype)&lt;BR /&gt;
• span=1s&lt;/P&gt;

&lt;P&gt;| tstats count as COUNT where index=main earliest=-30d by _time,sourcetype span=1s | timechart span=1h max(COUNT) as eps by sourcetype useother=f&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 16:26:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Calculating-Source-type-info-indexing-rate-and-EPS/m-p/363509#M162159</guid>
      <dc:creator>damiensurat</dc:creator>
      <dc:date>2018-03-19T16:26:40Z</dc:date>
    </item>
  </channel>
</rss>

