<?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 Identify number of deployment server clients? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/548496#M91190</link>
    <description>&lt;P&gt;When looking to update a deployment enterprise instances, we are exploring using a deployment server.&lt;/P&gt;&lt;P&gt;Splunk documentation says the below:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;"When provisioning a deployment server, note the following:&lt;/EM&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;DIV class="li_content"&gt;&lt;EM&gt;If it will be deploying to more than 50 clients, the deployment server must run on a dedicated Splunk Enterprise instance. The instance cannot double as an indexer or search head."&lt;/EM&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Is this below command the way to view the number of clients?&lt;/P&gt;&lt;P&gt;If so, I have 46, but I am looking to confirm, to see if we need to use a dedicated Splunk enterprise instance for updating using a deployment server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal source=*metrics.log group=tcpin_connections splunk_server=* 
| eval host=if(isnull(hostname), sourceHost,hostname) 
| search (host=*) AND (host!="(ALL)")
| eval connectionType=case(fwdType=="uf","univ fwder", fwdType=="lwf", "lightwt fwder",fwdType=="full", "heavy fwder", connectionType=="cooked" or connectionType=="cookedSSL","Splunk fwder", connectionType=="raw" or connectionType=="rawSSL","legacy fwder") 
| eval Ver=if(isnull(version),"pre 4.2",version) 
| fields connectionType sourceIp host kb tcp_eps tcp_KBps splunk_server Ver
| stats min(_time) as first_time, max(_time) as last_time, max(tcp_KBps) as max_tcp_KBps, avg(tcp_KBps) as avg_tcp_KBps, avg(tcp_eps) as avg_tcp_eps, sum(kb) as sum_kb by host sourceIp Ver 
| dedup host
| eval sum_mb = round(sum_kb/1024,0) 
| fields - sum_kb 
| eval avg_tcp_KBps = round(avg_tcp_KBps,0)
| eval max_tcp_KBps = round(max_tcp_KBps,0)
| eval class=case(
avg_tcp_KBps&amp;gt;0 AND avg_tcp_KBps&amp;lt;=128, "Standard Hosts",
avg_tcp_KBps&amp;gt;128 AND avg_tcp_KBps&amp;lt;=256, "Better Hosts",
avg_tcp_KBps&amp;gt;256, "Special Hosts")
| convert ctime(*time) 
| rename first_time as "First seen", last_time as "Last seen", avg_tcp_KBps as "AVG KB/s", avg_tcp_eps as "AVG Events/s per 30 seconds", sum_mb as "Total MB", max_tcp_KBps as "Peak Kbps" connectionType AS "Forwarder Type" sourceIp as "Source IP" host AS "Host" Ver As "Splunk Version"
| sort - "Peak Kbps"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Apr 2021 20:00:00 GMT</pubDate>
    <dc:creator>Jnewman28</dc:creator>
    <dc:date>2021-04-19T20:00:00Z</dc:date>
    <item>
      <title>Identify number of deployment server clients?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/548496#M91190</link>
      <description>&lt;P&gt;When looking to update a deployment enterprise instances, we are exploring using a deployment server.&lt;/P&gt;&lt;P&gt;Splunk documentation says the below:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;"When provisioning a deployment server, note the following:&lt;/EM&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;DIV class="li_content"&gt;&lt;EM&gt;If it will be deploying to more than 50 clients, the deployment server must run on a dedicated Splunk Enterprise instance. The instance cannot double as an indexer or search head."&lt;/EM&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Is this below command the way to view the number of clients?&lt;/P&gt;&lt;P&gt;If so, I have 46, but I am looking to confirm, to see if we need to use a dedicated Splunk enterprise instance for updating using a deployment server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal source=*metrics.log group=tcpin_connections splunk_server=* 
| eval host=if(isnull(hostname), sourceHost,hostname) 
| search (host=*) AND (host!="(ALL)")
| eval connectionType=case(fwdType=="uf","univ fwder", fwdType=="lwf", "lightwt fwder",fwdType=="full", "heavy fwder", connectionType=="cooked" or connectionType=="cookedSSL","Splunk fwder", connectionType=="raw" or connectionType=="rawSSL","legacy fwder") 
| eval Ver=if(isnull(version),"pre 4.2",version) 
| fields connectionType sourceIp host kb tcp_eps tcp_KBps splunk_server Ver
| stats min(_time) as first_time, max(_time) as last_time, max(tcp_KBps) as max_tcp_KBps, avg(tcp_KBps) as avg_tcp_KBps, avg(tcp_eps) as avg_tcp_eps, sum(kb) as sum_kb by host sourceIp Ver 
| dedup host
| eval sum_mb = round(sum_kb/1024,0) 
| fields - sum_kb 
| eval avg_tcp_KBps = round(avg_tcp_KBps,0)
| eval max_tcp_KBps = round(max_tcp_KBps,0)
| eval class=case(
avg_tcp_KBps&amp;gt;0 AND avg_tcp_KBps&amp;lt;=128, "Standard Hosts",
avg_tcp_KBps&amp;gt;128 AND avg_tcp_KBps&amp;lt;=256, "Better Hosts",
avg_tcp_KBps&amp;gt;256, "Special Hosts")
| convert ctime(*time) 
| rename first_time as "First seen", last_time as "Last seen", avg_tcp_KBps as "AVG KB/s", avg_tcp_eps as "AVG Events/s per 30 seconds", sum_mb as "Total MB", max_tcp_KBps as "Peak Kbps" connectionType AS "Forwarder Type" sourceIp as "Source IP" host AS "Host" Ver As "Splunk Version"
| sort - "Peak Kbps"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 20:00:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/548496#M91190</guid>
      <dc:creator>Jnewman28</dc:creator>
      <dc:date>2021-04-19T20:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Identify number of deployment server clients?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/548524#M91194</link>
      <description>&lt;P&gt;The search looks reasonable and 46 is an OK number for a DS.&amp;nbsp; The 50 number is not a hard limit, but a guideline.&amp;nbsp; A lot will depend on how frequently the clients phone home.&amp;nbsp; However, it's still a Good Practice to separate the DS from the indexers and search heads.&amp;nbsp; It's common to co-locate it with the License Manager.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 00:34:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/548524#M91194</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-04-20T00:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Identify number of deployment server clients?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/549124#M91249</link>
      <description>&lt;P&gt;Thanks for the insight and confirmation. We currently have a separate IDX Master that houses the License Manager and feeds it to the indexers.&lt;/P&gt;&lt;P&gt;Are you saying it's a good practice to place the deployment server on the (in our case) IDX Master server?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 13:58:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/549124#M91249</guid>
      <dc:creator>Jnewman28</dc:creator>
      <dc:date>2021-04-23T13:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Identify number of deployment server clients?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/549131#M91252</link>
      <description>&lt;P&gt;Co-locating the DS and CM is something you may be able to get away with, but it's not a good practice.&amp;nbsp; As the Splunk environment grows and becomes busier, the DS and CM will compete for resources and the indexer cluster will suffer for it.&amp;nbsp; See "Management / Utility Tier Recommendations" in the Splunk Validated Architectures manual (&lt;A href="https://www.splunk.com/pdfs/technical-briefs/splunk-validated-architectures.pdf" target="_blank"&gt;https://www.splunk.com/pdfs/technical-briefs/splunk-validated-architectures.pdf&lt;/A&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 14:36:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Identify-number-of-deployment-server-clients/m-p/549131#M91252</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-04-23T14:36:43Z</dc:date>
    </item>
  </channel>
</rss>

