<?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: Index Not Reporting in Splunk Query in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498054#M10889</link>
    <description>&lt;P&gt;This has been solved many times including:&lt;BR /&gt;
Meta Woot!: &lt;A href="https://splunkbase.splunk.com/app/2949/"&gt;https://splunkbase.splunk.com/app/2949/&lt;/A&gt;&lt;BR /&gt;
TrackMe: &lt;A href="https://splunkbase.splunk.com/app/4621/"&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/"&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/"&gt;https://splunkbase.splunk.com/app/3796/&lt;/A&gt;&lt;BR /&gt;
Splunk Security Essentials(&lt;A href="https://docs.splunksecurityessentials.com/features/sse_data_availability/):"&gt;https://docs.splunksecurityessentials.com/features/sse_data_availability/):&lt;/A&gt; &lt;A href="https://splunkbase.splunk.com/app/3435/"&gt;https://splunkbase.splunk.com/app/3435/&lt;/A&gt;&lt;BR /&gt;
Monitoring Console: &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/DMC/Configureforwardermonitoring"&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"&gt;https://docs.splunk.com/Documentation/DepMon/latest/DeployDepMon/Troubleshootyourdeployment#Forwarder_warnings&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Dec 2019 01:59:12 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2019-12-09T01:59:12Z</dc:date>
    <item>
      <title>Index Not Reporting in Splunk Query</title>
      <link>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498050#M10885</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;

&lt;P&gt;I would like to create a saved search in such a way that if any of the index is not reporting in Splunk for more than an hour then it should trigger an email with the index name information in it along with the last event came from that index.&lt;/P&gt;

&lt;P&gt;Is there any query available so that i can schedule the same.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 14:35:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498050#M10885</guid>
      <dc:creator>anandhalagaras1</dc:creator>
      <dc:date>2019-12-06T14:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Index Not Reporting in Splunk Query</title>
      <link>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498051#M10886</link>
      <description>&lt;P&gt;Kindly help on the request.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 14:57:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498051#M10886</guid>
      <dc:creator>anandhalagaras1</dc:creator>
      <dc:date>2019-12-06T14:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Index Not Reporting in Splunk Query</title>
      <link>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498052#M10887</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| metadata type=sourcetypes
| where recentTime &amp;lt;= relative_time(now(),"-1h")
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hi, @anandhalagarasan16021988&lt;BR /&gt;
This query is aim to check sources has not been updated more than an hour.&lt;BR /&gt;
you can change types(sources, hosts)&lt;/P&gt;

&lt;P&gt;or &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats summariesonly=t  count where index=index1 OR index=index2 by index _time span=1h
| timechart cont=f count by index
| where _time &amp;lt;= relative_time(now(),"-1h")
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This query also checks for an index that has not been updated.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Dec 2019 13:47:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498052#M10887</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2019-12-07T13:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Index Not Reporting in Splunk Query</title>
      <link>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498053#M10888</link>
      <description>&lt;P&gt;Try this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats latest(_time) as last_time, latest(_raw) as last_event by index earliest=-2h
| where (now()-last_time) &amp;gt; 3600
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 07 Dec 2019 21:52:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498053#M10888</guid>
      <dc:creator>arjunpkishore5</dc:creator>
      <dc:date>2019-12-07T21:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Index Not Reporting in Splunk Query</title>
      <link>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498054#M10889</link>
      <description>&lt;P&gt;This has been solved many times including:&lt;BR /&gt;
Meta Woot!: &lt;A href="https://splunkbase.splunk.com/app/2949/"&gt;https://splunkbase.splunk.com/app/2949/&lt;/A&gt;&lt;BR /&gt;
TrackMe: &lt;A href="https://splunkbase.splunk.com/app/4621/"&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/"&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/"&gt;https://splunkbase.splunk.com/app/3796/&lt;/A&gt;&lt;BR /&gt;
Splunk Security Essentials(&lt;A href="https://docs.splunksecurityessentials.com/features/sse_data_availability/):"&gt;https://docs.splunksecurityessentials.com/features/sse_data_availability/):&lt;/A&gt; &lt;A href="https://splunkbase.splunk.com/app/3435/"&gt;https://splunkbase.splunk.com/app/3435/&lt;/A&gt;&lt;BR /&gt;
Monitoring Console: &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/DMC/Configureforwardermonitoring"&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"&gt;https://docs.splunk.com/Documentation/DepMon/latest/DeployDepMon/Troubleshootyourdeployment#Forwarder_warnings&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2019 01:59:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498054#M10889</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-12-09T01:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Index Not Reporting in Splunk Query</title>
      <link>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498055#M10890</link>
      <description>&lt;P&gt;Hi arjunpkishore5,&lt;BR /&gt;
Getting an error when i ran the query.&lt;BR /&gt;
Error in 'tstats' command: Invalid argument: 'earliest=-2h'&lt;BR /&gt;
The search job has failed due to an error. You may be able view the job in the Job Inspector.&lt;/P&gt;

&lt;P&gt;Kindly check and let me know.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 14:10:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Index-Not-Reporting-in-Splunk-Query/m-p/498055#M10890</guid>
      <dc:creator>anandhalagaras1</dc:creator>
      <dc:date>2019-12-13T14:10:28Z</dc:date>
    </item>
  </channel>
</rss>

