<?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: Monitoring log sources that go silent? in Monitoring Splunk</title>
    <link>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619803#M9221</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/66553"&gt;@dionrivera&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 07 Nov 2022 07:17:16 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2022-11-07T07:17:16Z</dc:date>
    <item>
      <title>Monitoring log sources that go silent?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619710#M9213</link>
      <description>&lt;P&gt;Hi team. I'm looking for a query/solution that will alert me when a log source is no longer sending logs. For example, I have an index called "linux_prod" which is populated when linux hosts fortheir events. I would like to receive an alert when this index stops receiving events for the past 1 hour.&amp;nbsp; This happens when SC4S or some other issue on the network have problems.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 19:10:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619710#M9213</guid>
      <dc:creator>dionrivera</dc:creator>
      <dc:date>2022-11-04T19:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring log sources that go silent</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619712#M9214</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/66553"&gt;@dionrivera&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you have to list the indexes to monitor and put them in a lookup, called e.g. perimeter.csv containing at least one column (called e.g. index).&lt;/P&gt;&lt;P&gt;then you could run something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| metasearch index=* [ | inputlookup perimeter.csv | fields index ]
| stats count BY index
| append [ | inputlookup perimeter.csv | eval count=0 | fields index count ]
| stats sum(count) AS total BY index
| where total=0&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 19:10:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619712#M9214</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-11-04T19:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring log sources that go silent</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619724#M9217</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;Any suggestions how I could include the time within the query? I need to look every hour if the event count has changed.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Grazie!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 20:00:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619724#M9217</guid>
      <dc:creator>dionrivera</dc:creator>
      <dc:date>2022-11-04T20:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring log sources that go silent</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619750#M9218</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/66553"&gt;@dionrivera&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you can run the search using as time the latest hour or insert in the main search "earliest=-h latest=now"&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| metasearch index=* earliest=-h latest=now [ | inputlookup perimeter.csv | fields index ]
| stats count BY index
| append [ | inputlookup perimeter.csv | eval count=0 | fields index count ]
| stats sum(count) AS total BY index
| where total=0&lt;/LI-CODE&gt;&lt;P&gt;and schedule your alert every hour with cron:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;0 * * * *&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Nov 2022 10:17:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619750#M9218</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-11-05T10:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring log sources that go silent?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619784#M9220</link>
      <description>&lt;P&gt;Thank you sir. Much appreciated.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Nov 2022 22:57:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619784#M9220</guid>
      <dc:creator>dionrivera</dc:creator>
      <dc:date>2022-11-06T22:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring log sources that go silent?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619803#M9221</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/66553"&gt;@dionrivera&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2022 07:17:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Monitoring-log-sources-that-go-silent/m-p/619803#M9221</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-11-07T07:17:16Z</dc:date>
    </item>
  </channel>
</rss>

