<?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: Determine which Active servers with Universal Forwarder areNOT sending logs to Splunk in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470506#M80893</link>
    <description>&lt;P&gt;See DB-Connect App ( &lt;A href="https://splunkbase.splunk.com/app/2686/"&gt;https://splunkbase.splunk.com/app/2686/&lt;/A&gt; ) to execute queries on a DB and update a lookup.&lt;BR /&gt;
Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
    <pubDate>Tue, 03 Sep 2019 08:06:15 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2019-09-03T08:06:15Z</dc:date>
    <item>
      <title>Determine which Active servers with Universal Forwarder areNOT sending logs to Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470503#M80890</link>
      <description>&lt;P&gt;We have a bunch of servers with UFs installed. These servers may have different operational states. For example, "Active", "Build in Progress", "Decommissioned", and "Decom in Progress". We use ServiceNow for the asset inventory. &lt;/P&gt;

&lt;P&gt;This is the search query used to determine the version of the UFs installed.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*metrics.log component=Metrics group=tcpin_connections | dedup hostname | table hostname sourceIp os arch version
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I would like to be able to get the Active servers that have splunk UF  installed and NOT reporting to splunk.&lt;/P&gt;

&lt;P&gt;Also, looking for a way to dynamically update the list of Active servers, as this list changes whenever there are new servers onboarded or old servers decommissioned.&lt;/P&gt;

&lt;P&gt;I've looked at the Splunk App/Add-on for ServiceNow and could not find an option to do this.&lt;/P&gt;

&lt;P&gt;I've also looked at &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.1/DMC/Configureforwardermonitoring"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.1/DMC/Configureforwardermonitoring&lt;/A&gt;, but am not sure how to go about configuring it to dynamically update the asset list with the Active servers.&lt;/P&gt;

&lt;P&gt;Any help will be much appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 06:17:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470503#M80890</guid>
      <dc:creator>geoffmx</dc:creator>
      <dc:date>2019-09-03T06:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Determine which Active servers with Universal Forwarder areNOT sending logs to Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470504#M80891</link>
      <description>&lt;P&gt;Hi geoffmx,&lt;BR /&gt;
the way to have the list of not reporting UFs is the following:&lt;BR /&gt;
at first you have to create a lookup (e.g. called "perimeter.csv") containing the list of all hostnames of the UFs that you should have;&lt;BR /&gt;
in this lookup there must be at least one field that you can call "host", but you could also insert other information to enrich your searches;&lt;BR /&gt;
you can populate this lookup manually or from a CMDB;&lt;BR /&gt;
after you have to run a search like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| metasearch index=_internal
| eval host=upper(host)
| stats count BY host
| append [ | inputlookup perimeter.csv | eval host=upper(host), count=0 | fields host, count ]
| stats sum(count) AS Total BY host
| where Total=0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In this way you have the list of all not reporting UFs and you can crete an alert.&lt;BR /&gt;
If you don't use the last row, you can display in a dashboard the situation of all your forwarders.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 07:01:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470504#M80891</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-09-03T07:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Determine which Active servers with Universal Forwarder areNOT sending logs to Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470505#M80892</link>
      <description>&lt;P&gt;Thanks gcusello! This is exactly what I was looking for &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Would you happen to know a way to dynamically update the lookup via a CMDB? I can update manually, but automating it would be ideal.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 08:00:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470505#M80892</guid>
      <dc:creator>geoffmx</dc:creator>
      <dc:date>2019-09-03T08:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Determine which Active servers with Universal Forwarder areNOT sending logs to Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470506#M80893</link>
      <description>&lt;P&gt;See DB-Connect App ( &lt;A href="https://splunkbase.splunk.com/app/2686/"&gt;https://splunkbase.splunk.com/app/2686/&lt;/A&gt; ) to execute queries on a DB and update a lookup.&lt;BR /&gt;
Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 08:06:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470506#M80893</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-09-03T08:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Determine which Active servers with Universal Forwarder areNOT sending logs to Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470507#M80894</link>
      <description>&lt;P&gt;Thank you, once again!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 08:22:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Determine-which-Active-servers-with-Universal-Forwarder-areNOT/m-p/470507#M80894</guid>
      <dc:creator>geoffmx</dc:creator>
      <dc:date>2019-09-03T08:22:03Z</dc:date>
    </item>
  </channel>
</rss>

