<?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 UF status was not connected dashboard in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/UF-status-was-not-connected-dashboard/m-p/627049#M107658</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;we are working on to create a dashboard on UF status connection by using phone home interval in DS using search below&lt;/P&gt;&lt;P&gt;but while checking if forwarder phone connection last few secs in DS still it was showing as not connected in list.&lt;/P&gt;&lt;P&gt;please let us know what needs to be changes in the search to get exact result and also search was running slowly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=_internal source=*metrics.log group=tcpin_connections earliest=-2d@d&lt;BR /&gt;| eval Host=coalesce(hostname, sourceHost)&lt;BR /&gt;| eval age=(now()-_time)&lt;BR /&gt;| stats&lt;BR /&gt;min(age) AS age&lt;BR /&gt;max(_time) AS LastTime&lt;BR /&gt;BY Host&lt;BR /&gt;| convert ctime(LastTime) AS "Last Active On"&lt;BR /&gt;| eval Status=if(age&amp;lt; 1800,"Running","DOWN")&lt;BR /&gt;| rename age AS Age&lt;BR /&gt;| eval Age=tostring(Age,"duration")&lt;BR /&gt;| sort Status&lt;BR /&gt;| dedup Host&lt;BR /&gt;| table Host Status Age "Last Active On",&lt;BR /&gt;| where Status="DOWN"&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jan 2023 09:47:56 GMT</pubDate>
    <dc:creator>sekhar463</dc:creator>
    <dc:date>2023-01-13T09:47:56Z</dc:date>
    <item>
      <title>UF status was not connected dashboard</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/UF-status-was-not-connected-dashboard/m-p/627049#M107658</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;we are working on to create a dashboard on UF status connection by using phone home interval in DS using search below&lt;/P&gt;&lt;P&gt;but while checking if forwarder phone connection last few secs in DS still it was showing as not connected in list.&lt;/P&gt;&lt;P&gt;please let us know what needs to be changes in the search to get exact result and also search was running slowly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=_internal source=*metrics.log group=tcpin_connections earliest=-2d@d&lt;BR /&gt;| eval Host=coalesce(hostname, sourceHost)&lt;BR /&gt;| eval age=(now()-_time)&lt;BR /&gt;| stats&lt;BR /&gt;min(age) AS age&lt;BR /&gt;max(_time) AS LastTime&lt;BR /&gt;BY Host&lt;BR /&gt;| convert ctime(LastTime) AS "Last Active On"&lt;BR /&gt;| eval Status=if(age&amp;lt; 1800,"Running","DOWN")&lt;BR /&gt;| rename age AS Age&lt;BR /&gt;| eval Age=tostring(Age,"duration")&lt;BR /&gt;| sort Status&lt;BR /&gt;| dedup Host&lt;BR /&gt;| table Host Status Age "Last Active On",&lt;BR /&gt;| where Status="DOWN"&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 09:47:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/UF-status-was-not-connected-dashboard/m-p/627049#M107658</guid>
      <dc:creator>sekhar463</dc:creator>
      <dc:date>2023-01-13T09:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: UF status was not connected dashboard</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/UF-status-was-not-connected-dashboard/m-p/627056#M107659</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/244375"&gt;@sekhar463&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;to display forwarders' status I usually use a lookup (called e.g. perimer.csv) containing the Forwarders to monitor (eventually updated using a script) in a field called host and running a search like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats count WHERE index=_internal BY host
| eval host=lower(host)
| append [ | inputlookup perimeter.csv | eval host=lower(host), count=0 | fields host count ]
| stats sum(count) AS total BY host
| eval status=if(total=0,"Missing","Present")
| table host status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 10:54:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/UF-status-was-not-connected-dashboard/m-p/627056#M107659</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-01-13T10:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: UF status was not connected dashboard</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/UF-status-was-not-connected-dashboard/m-p/627059#M107661</link>
      <description>&lt;P&gt;In Monitoring Console you can see the forwarder status. There is an in built dashboard available for it. &amp;nbsp;&lt;/P&gt;&lt;P&gt;Refer for more info about the built in alert/reports:&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.0.3/DMC/Configureforwardermonitoring#Configure_forwarder_monitoring_for_the_Monitoring_Console" target="_blank"&gt;Configure forwarder monitoring for the Monitoring Console&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 12:06:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/UF-status-was-not-connected-dashboard/m-p/627059#M107661</guid>
      <dc:creator>Jawahir</dc:creator>
      <dc:date>2023-01-13T12:06:37Z</dc:date>
    </item>
  </channel>
</rss>

