<?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 Filtering out servers in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-servers/m-p/272018#M52269</link>
    <description>&lt;P&gt;I'm trying to filter out servers that aren't getting a lot of traffic. So, I'm wondering how to filter out servers that are getting less than 10 requests per minute.&lt;/P&gt;

&lt;P&gt;Right now, I'm getting the transactions per second of each JVM on all the servers:&lt;/P&gt;

&lt;P&gt;index=att_prod_ecomm_open-api_rest sourcetype=att_openapi_access_log NOT "/openapi-rest-web/index.html" | bucket _time span=1s | stats count by _time | stats avg(count) as Average_TPS | appendcols [search index=att_prod_ecomm_open-api_rest sourcetype=att_openapi_access_log NOT "/openapi-rest-web/index.html" | stats count by source | stats count as jvm] | eval final = Average_TPS/jvm | gauge final&lt;/P&gt;

&lt;P&gt;But i want to disregard the servers that get less than 10 requests per minute. Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 10:18:52 GMT</pubDate>
    <dc:creator>bgeshk</dc:creator>
    <dc:date>2020-09-29T10:18:52Z</dc:date>
    <item>
      <title>Filtering out servers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-servers/m-p/272018#M52269</link>
      <description>&lt;P&gt;I'm trying to filter out servers that aren't getting a lot of traffic. So, I'm wondering how to filter out servers that are getting less than 10 requests per minute.&lt;/P&gt;

&lt;P&gt;Right now, I'm getting the transactions per second of each JVM on all the servers:&lt;/P&gt;

&lt;P&gt;index=att_prod_ecomm_open-api_rest sourcetype=att_openapi_access_log NOT "/openapi-rest-web/index.html" | bucket _time span=1s | stats count by _time | stats avg(count) as Average_TPS | appendcols [search index=att_prod_ecomm_open-api_rest sourcetype=att_openapi_access_log NOT "/openapi-rest-web/index.html" | stats count by source | stats count as jvm] | eval final = Average_TPS/jvm | gauge final&lt;/P&gt;

&lt;P&gt;But i want to disregard the servers that get less than 10 requests per minute. Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:18:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-servers/m-p/272018#M52269</guid>
      <dc:creator>bgeshk</dc:creator>
      <dc:date>2020-09-29T10:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering out servers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-servers/m-p/272019#M52270</link>
      <description>&lt;P&gt;Try like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=att_prod_ecomm_open-api_rest sourcetype=att_openapi_access_log NOT "/openapi-rest-web/index.html" | bucket _time span=1s | eval temp_time=_time | bucket span=1m temp_time | eventstats count by temp_time source | where count&amp;gt;=10| stats dc(source) as jvm count  by _time | eval avg=count/jvm | stats avg(avg) as Average_TPS| gauge Average_TPS
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Jul 2016 14:23:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-servers/m-p/272019#M52270</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-07-18T14:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering out servers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-servers/m-p/272020#M52271</link>
      <description>&lt;P&gt;Thank you very much. That makes a lot more sense!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 16:40:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-servers/m-p/272020#M52271</guid>
      <dc:creator>bgeshk</dc:creator>
      <dc:date>2016-07-18T16:40:43Z</dc:date>
    </item>
  </channel>
</rss>

