<?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: Report on Splunk Forwarders in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111523#M4233</link>
    <description>&lt;P&gt;I tried the first sarch solution but it gave me 147 results. However, in the Deployment Monitor it shows 377 forwarders (which I think is correct).  The other searches return zero results. &lt;BR /&gt;
I probably did not explain clearly - I am using the Deployment Monitor and it shows the result I am interested in under "All Forwarders" but with a maximum of 50 per page.  I am trying to get a report or search that shows all the Forwards in a single page or allows me to export the entire list.  Thanks.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jan 2014 04:15:33 GMT</pubDate>
    <dc:creator>steveirogers</dc:creator>
    <dc:date>2014-01-14T04:15:33Z</dc:date>
    <item>
      <title>Report on Splunk Forwarders</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111519#M4229</link>
      <description>&lt;P&gt;Is there a way to get a report of "All Forwarders" in Splunk.  I am trying to get this information in a format  that I can export to a spreadsheet (needed to verify that all our inventoried hosts are reporting to Splunk).  I am using the Deployment App, but the best I can do is only see 50 entries per page and there is no "export" function.   I tried some searches based on research of the doc and answers on the forum but to no avail.  Any help would be appreciated.&lt;/P&gt;

&lt;P&gt;How can I find what search the Deployment Monitor is using for this "All Forwarders" dashboard?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 23:00:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111519#M4229</guid>
      <dc:creator>steveirogers</dc:creator>
      <dc:date>2014-01-13T23:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Report on Splunk Forwarders</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111520#M4230</link>
      <description>&lt;P&gt;Try one of these solutions - or install the Deployment Monitor app --&lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/53193/deployment-monitor-not-displaying-all-forwarders"&gt;Deployment Monitor not displaying all forwarders&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/73908/listing-forwarders"&gt;Listing forwarders&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/45204/search-for-active-hosts-over-a-period-of-time"&gt;Search for active hosts&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The above answers all relate to "are forwarders connecting to the Splunk indexer(s) and sending data?"&lt;/P&gt;

&lt;P&gt;If your question is "are forwarders connecting to the Splunk deployment server?" that is different. Try this search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;search = index=_internal component=deploymentclient phonehome earliest=-30d
| eval today=if(relative_time(now(),"-24h@h")&amp;lt;_time,1,0)
| stats sum(today) as ConnectedLast24Hours count as ConnectedLast30Days by clientip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or the same as above, but replace the search with&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd group=ds_phonehomes*
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or a third option for the search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd component=Metrics group=ds_connections*
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Different versions of Splunk had different internal log formats, so you may need to try more than one of these to get the results you want.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 23:34:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111520#M4230</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-01-13T23:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: Report on Splunk Forwarders</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111521#M4231</link>
      <description>&lt;P&gt;BTW, this will tell you which hosts have reported in - and can identify those that checked in in the past 30 days but not the last 24 hours.&lt;/P&gt;

&lt;P&gt;However, if you want to have a list of "missing" hosts - you should consider setting up a lookup table that contains all the host names. Then it would be easy to run a report that says "give me a list of hosts that have never checked in with Splunk and those that have not recently checked in." Consider whether this lookup should be based on ip or host name...&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 23:37:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111521#M4231</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-01-13T23:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Report on Splunk Forwarders</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111522#M4232</link>
      <description>&lt;P&gt;lguinn, thanks for your prompt response.  I will experiment with the various options and post my results.  Thanks very much.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2014 00:15:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111522#M4232</guid>
      <dc:creator>steveirogers</dc:creator>
      <dc:date>2014-01-14T00:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Report on Splunk Forwarders</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111523#M4233</link>
      <description>&lt;P&gt;I tried the first sarch solution but it gave me 147 results. However, in the Deployment Monitor it shows 377 forwarders (which I think is correct).  The other searches return zero results. &lt;BR /&gt;
I probably did not explain clearly - I am using the Deployment Monitor and it shows the result I am interested in under "All Forwarders" but with a maximum of 50 per page.  I am trying to get a report or search that shows all the Forwards in a single page or allows me to export the entire list.  Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2014 04:15:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Report-on-Splunk-Forwarders/m-p/111523#M4233</guid>
      <dc:creator>steveirogers</dc:creator>
      <dc:date>2014-01-14T04:15:33Z</dc:date>
    </item>
  </channel>
</rss>

