<?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 to detect when a host stop sending data to Splunk in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/How-to-detect-when-a-host-stop-sending-data-to-Splunk/m-p/563742#M12922</link>
    <description>&lt;P&gt;From community slack...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are a lot of options for finding hosts or sources that stop submitting events:&lt;BR /&gt;Meta Woot! &lt;A href="https://splunkbase.splunk.com/app/2949/" target="_blank"&gt;https://splunkbase.splunk.com/app/2949/&lt;/A&gt;&lt;BR /&gt;TrackMe &lt;A href="https://splunkbase.splunk.com/app/4621/" target="_blank"&gt;https://splunkbase.splunk.com/app/4621/&lt;/A&gt;&lt;BR /&gt;Broken Hosts App for Splunk &lt;A href="https://splunkbase.splunk.com/app/3247/" target="_blank"&gt;https://splunkbase.splunk.com/app/3247/&lt;/A&gt;&lt;BR /&gt;Alerts for Splunk Admins ("ForwarderLevel" alerts) &lt;A href="https://splunkbase.splunk.com/app/3796/" target="_blank"&gt;https://splunkbase.splunk.com/app/3796/&lt;/A&gt;&lt;BR /&gt;Monitoring Console &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/DMC/Configureforwardermonitoring" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/latest/DMC/Configureforwardermonitoring&lt;/A&gt;&lt;BR /&gt;Deployment Server &lt;A href="https://docs.splunk.com/Documentation/DepMon/latest/DeployDepMon/Troubleshootyourdeployment#Forwarder_warnings" target="_blank"&gt;https://docs.splunk.com/Documentation/DepMon/latest/DeployDepMon/Troubleshootyourdeployment#Forwarder_warnings&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Some helpful posts:&lt;BR /&gt;&lt;A href="https://lantern.splunk.com/hc/en-us/articles/360048503294-Hosts-logging-data-in-a-certain-timeframe" target="_blank"&gt;https://lantern.splunk.com/hc/en-us/articles/360048503294-Hosts-logging-data-in-a-certain-timeframe&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.duanewaddle.com/proving-a-negative/" target="_blank"&gt;https://www.duanewaddle.com/proving-a-negative/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Aug 2021 06:51:03 GMT</pubDate>
    <dc:creator>gjanders</dc:creator>
    <dc:date>2021-08-18T06:51:03Z</dc:date>
    <item>
      <title>How to detect when a host stop sending data to Splunk</title>
      <link>https://community.splunk.com/t5/Alerting/How-to-detect-when-a-host-stop-sending-data-to-Splunk/m-p/563571#M12909</link>
      <description>&lt;P&gt;&lt;SPAN&gt;What's the best way to create a base search that will be generic/portable across all clients&amp;nbsp; that will look over a variable period of 45days to identify which hosts have stop sending logs to Splunk? I want to scale it out for about 20,ooo apps. I want to keep the same SPL and use lookups and macros to filter the requirements for each client but, will not be in the base search.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 02:40:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-to-detect-when-a-host-stop-sending-data-to-Splunk/m-p/563571#M12909</guid>
      <dc:creator>Lewis</dc:creator>
      <dc:date>2021-08-17T02:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect when a host stop sending data to Splunk</title>
      <link>https://community.splunk.com/t5/Alerting/How-to-detect-when-a-host-stop-sending-data-to-Splunk/m-p/563574#M12910</link>
      <description>&lt;P&gt;A typical way to determine that something is NOT in Splunk, is to maintain a stored state of the source of truth, e.g. maintain a lookup file of hosts that have-in-the-past sent data to Splunk or hosts that should-always send data to Splunk.&lt;/P&gt;&lt;P&gt;How you maintain that will be somewhat dependent on how source of truth is maintained for each client.&lt;/P&gt;&lt;P&gt;Then if you have your source of truth, the SPL to check for that would be something like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats count by host
| eval type="exists"
| append [
  | inputlookup source_of_truth.csv
  | eval type="required"
]
| stats values(type) as types by host
| where types="required" AND mvcount(types)==1
&lt;/LI-CODE&gt;&lt;P&gt;This will then give you a list of hosts that ONLY are found in the csv within the time window you specify.&amp;nbsp; You will of course have to adapt that to fit your requirements.&lt;/P&gt;&lt;P&gt;There is of course the excellent TrackMe app&amp;nbsp;&lt;A href="https://splunkbase.splunk.com/app/4621/" target="_blank"&gt;https://splunkbase.splunk.com/app/4621/&lt;/A&gt;&amp;nbsp;which basically does this for you - and lots more.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 02:52:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-to-detect-when-a-host-stop-sending-data-to-Splunk/m-p/563574#M12910</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2021-08-17T02:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect when a host stop sending data to Splunk</title>
      <link>https://community.splunk.com/t5/Alerting/How-to-detect-when-a-host-stop-sending-data-to-Splunk/m-p/563742#M12922</link>
      <description>&lt;P&gt;From community slack...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are a lot of options for finding hosts or sources that stop submitting events:&lt;BR /&gt;Meta Woot! &lt;A href="https://splunkbase.splunk.com/app/2949/" target="_blank"&gt;https://splunkbase.splunk.com/app/2949/&lt;/A&gt;&lt;BR /&gt;TrackMe &lt;A href="https://splunkbase.splunk.com/app/4621/" target="_blank"&gt;https://splunkbase.splunk.com/app/4621/&lt;/A&gt;&lt;BR /&gt;Broken Hosts App for Splunk &lt;A href="https://splunkbase.splunk.com/app/3247/" target="_blank"&gt;https://splunkbase.splunk.com/app/3247/&lt;/A&gt;&lt;BR /&gt;Alerts for Splunk Admins ("ForwarderLevel" alerts) &lt;A href="https://splunkbase.splunk.com/app/3796/" target="_blank"&gt;https://splunkbase.splunk.com/app/3796/&lt;/A&gt;&lt;BR /&gt;Monitoring Console &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/DMC/Configureforwardermonitoring" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/latest/DMC/Configureforwardermonitoring&lt;/A&gt;&lt;BR /&gt;Deployment Server &lt;A href="https://docs.splunk.com/Documentation/DepMon/latest/DeployDepMon/Troubleshootyourdeployment#Forwarder_warnings" target="_blank"&gt;https://docs.splunk.com/Documentation/DepMon/latest/DeployDepMon/Troubleshootyourdeployment#Forwarder_warnings&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Some helpful posts:&lt;BR /&gt;&lt;A href="https://lantern.splunk.com/hc/en-us/articles/360048503294-Hosts-logging-data-in-a-certain-timeframe" target="_blank"&gt;https://lantern.splunk.com/hc/en-us/articles/360048503294-Hosts-logging-data-in-a-certain-timeframe&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.duanewaddle.com/proving-a-negative/" target="_blank"&gt;https://www.duanewaddle.com/proving-a-negative/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Aug 2021 06:51:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-to-detect-when-a-host-stop-sending-data-to-Splunk/m-p/563742#M12922</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2021-08-18T06:51:03Z</dc:date>
    </item>
  </channel>
</rss>

