<?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: How do we determine whether a  forwarder phoned home recently? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359814#M65639</link>
    <description>&lt;P&gt;... newer answer...&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/319970/what-options-are-there-to-find-if-a-forwarder-has.html"&gt;https://answers.splunk.com/answers/319970/what-options-are-there-to-find-if-a-forwarder-has.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;...older answers...&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/41447/query-alert-to-detect-if-a-light-forwarder-stops-reporting-to-deployment-server.html"&gt;https://answers.splunk.com/answers/41447/query-alert-to-detect-if-a-light-forwarder-stops-reporting-to-deployment-server.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/798/how-do-i-tell-if-a-forwarder-is-down.html"&gt;https://answers.splunk.com/answers/798/how-do-i-tell-if-a-forwarder-is-down.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 02 May 2017 19:54:02 GMT</pubDate>
    <dc:creator>DalJeanis</dc:creator>
    <dc:date>2017-05-02T19:54:02Z</dc:date>
    <item>
      <title>How do we determine whether a  forwarder phoned home recently?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359813#M65638</link>
      <description>&lt;P&gt;Is there a rest call to figure out whether a forwarder phoned home in the past hour? We would like to run this call against a list of servers.&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 19:49:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359813#M65638</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2017-05-02T19:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do we determine whether a  forwarder phoned home recently?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359814#M65639</link>
      <description>&lt;P&gt;... newer answer...&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/319970/what-options-are-there-to-find-if-a-forwarder-has.html"&gt;https://answers.splunk.com/answers/319970/what-options-are-there-to-find-if-a-forwarder-has.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;...older answers...&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/41447/query-alert-to-detect-if-a-light-forwarder-stops-reporting-to-deployment-server.html"&gt;https://answers.splunk.com/answers/41447/query-alert-to-detect-if-a-light-forwarder-stops-reporting-to-deployment-server.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/798/how-do-i-tell-if-a-forwarder-is-down.html"&gt;https://answers.splunk.com/answers/798/how-do-i-tell-if-a-forwarder-is-down.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 19:54:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359814#M65639</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-05-02T19:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do we determine whether a  forwarder phoned home recently?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359815#M65640</link>
      <description>&lt;P&gt;Try this search on against your DS, or use the CLI version (&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.6.0/RESTREF/RESTdeploy#deployment.2Fserver.2Fclients):"&gt;http://docs.splunk.com/Documentation/Splunk/6.6.0/RESTREF/RESTdeploy#deployment.2Fserver.2Fclients):&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| rest /services/deployment/server/clients&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;It will give you some great info about your forwarders which you could then subsearch against to look for your forwarders calling home to the DS. &lt;/P&gt;

&lt;P&gt;Mainly you will want lastPhoneHomeTime with with a lil eval to determine if they haven't phone home in n minutes. This example uses 900 secons aka 15 mins:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| rest /services/deployment/server/clients &lt;BR /&gt;
 | fields hostname lastPhoneHomeTime &lt;BR /&gt;
 | eval status = if(lastPhoneHomeTime &amp;lt; (now() - 900), "missing", "active")&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Obviously if you have a large number of forwarders you will want to filter down by name (https://:/services/deployment/server/clients/{name})&lt;/P&gt;

&lt;P&gt;This is all to look for UF to DS communication. If you are actually looking for UF connecting to IDX, then please use the Monitoring Console forwarder management options. &lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 22:30:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359815#M65640</guid>
      <dc:creator>mattymo</dc:creator>
      <dc:date>2017-05-02T22:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do we determine whether a  forwarder phoned home recently?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359816#M65641</link>
      <description>&lt;P&gt;Perfect - thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 11:07:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-we-determine-whether-a-forwarder-phoned-home-recently/m-p/359816#M65641</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2017-05-03T11:07:16Z</dc:date>
    </item>
  </channel>
</rss>

