<?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: Is forwarder management data indexed? in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143865#M5397</link>
    <description>&lt;P&gt;Yes. According to forwarder management page. Also apps have been deployed as expected.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Jul 2014 18:20:18 GMT</pubDate>
    <dc:creator>chanfoli</dc:creator>
    <dc:date>2014-07-16T18:20:18Z</dc:date>
    <item>
      <title>Is forwarder management data indexed?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143859#M5391</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I want to be able to customize searches on the data in the forwarder management page. It would seem that client phone-home status is being cached somewhere like in an index but I can't find it. I would like to be able to have more flexible filtering on what I see and the ability to sort it.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Sean&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 18:40:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143859#M5391</guid>
      <dc:creator>chanfoli</dc:creator>
      <dc:date>2014-07-15T18:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Is forwarder management data indexed?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143860#M5392</link>
      <description>&lt;P&gt;Look in the &lt;CODE&gt;_internal&lt;/CODE&gt; index. Here are some ideas to get you started...&lt;/P&gt;

&lt;P&gt;Are apps being downloaded?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal component=DeployedApplication OR 
      component=PackageDownloadRestHandler  sourcetype=splunkd 
| table _time log_level host app message
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is the deployment client phoning home?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal (*phonehome* component=DC*) OR (component=DC:HandshakeReplyHandler)
| sort _time
| table _time host log_level message
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is the deployment server hearing the phone homes?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal metrics group=deploy-server sourcetype=splunkd 
| timechart span=2m avg(nReceived) by host
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Jul 2014 19:27:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143860#M5392</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-07-15T19:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is forwarder management data indexed?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143861#M5393</link>
      <description>&lt;P&gt;Thanks L. I was seeing some relevant events, but I am not finding anything on my deployment server in _internal which would correspond to the actual phone-home event and tie it to a client other than the splunkd_access logs which don't really have anything that useful or even easily extractable. I basically want to search and report similar to the "Clients" tab in forwarder management, but apply some more complex filters and sort the list. If it is not doable I understand.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:04:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143861#M5393</guid>
      <dc:creator>chanfoli</dc:creator>
      <dc:date>2020-09-28T17:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is forwarder management data indexed?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143862#M5394</link>
      <description>&lt;P&gt;By default, all the forwarders should be sending their &lt;CODE&gt;splunkd.log&lt;/CODE&gt; files (and  some others) to the splunk indexers - so you should be able to see things from the forwarder perspective as well as from the forwarder management server. &lt;/P&gt;

&lt;P&gt;A search of &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd | stats count by host&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;over the last hour should show many different hosts...&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 22:12:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143862#M5394</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-07-15T22:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is forwarder management data indexed?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143863#M5395</link>
      <description>&lt;P&gt;Thanks again L. Understood. In this case, we recently added 28 of our first windows clients we're mostly splunking Linux. I see most phoning home fine within minutes in the clients page, but it doesn't look like the phone home events actually end up in the clients' splunkd.logs, I see other events relating to watched file monitors etc but nothing with regards to phone-homes. I was trying to access the same data the forwarder management is using to tell me that x-client has phoned home in the past minute, I take it that this either not indexed or not accessible. Thanks, Sean.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 01:24:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143863#M5395</guid>
      <dc:creator>chanfoli</dc:creator>
      <dc:date>2014-07-16T01:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is forwarder management data indexed?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143864#M5396</link>
      <description>&lt;P&gt;Did the client actually phone home?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 07:09:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143864#M5396</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-07-16T07:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is forwarder management data indexed?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143865#M5397</link>
      <description>&lt;P&gt;Yes. According to forwarder management page. Also apps have been deployed as expected.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 18:20:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Is-forwarder-management-data-indexed/m-p/143865#M5397</guid>
      <dc:creator>chanfoli</dc:creator>
      <dc:date>2014-07-16T18:20:18Z</dc:date>
    </item>
  </channel>
</rss>

