<?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: status of data feeds coming in in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351579#M164258</link>
    <description>&lt;P&gt;thx everyone for their feedback, the query I am using is this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats count WHERE index=* GROUPBY sourcetype, _time span=1d | timechart span=1d sum(count) by sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;this seems to be working pretty good, but I can't filter sourcetypes that for example didnt receive any feeds for more than 24 hours&lt;/P&gt;</description>
    <pubDate>Fri, 29 Dec 2017 09:34:04 GMT</pubDate>
    <dc:creator>ecanmaster</dc:creator>
    <dc:date>2017-12-29T09:34:04Z</dc:date>
    <item>
      <title>status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351572#M164251</link>
      <description>&lt;P&gt;Is there a way to show total feeds coming in per sourcetype etc. everyday?&lt;BR /&gt;
Would be good if I can see the data within a graph, so we can see clearly fluctuations&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 08:11:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351572#M164251</guid>
      <dc:creator>ecanmaster</dc:creator>
      <dc:date>2017-12-21T08:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351573#M164252</link>
      <description>&lt;P&gt;Try this!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats count where index=* by sourcetype _time | timechart span=1d count by  sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can change span according to your need. run this for all time&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 08:30:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351573#M164252</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2017-12-21T08:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351574#M164253</link>
      <description>&lt;P&gt;index=*&lt;BR /&gt;
|timechart span=1d count by sourcetype&lt;/P&gt;

&lt;P&gt;switch to visualization and see what chart suites you  &lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 08:34:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351574#M164253</guid>
      <dc:creator>rvinjana</dc:creator>
      <dc:date>2017-12-21T08:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351575#M164254</link>
      <description>&lt;P&gt;If you'd like to create a long time overview about your event inputs you can add the collected data to a summary.&lt;BR /&gt;
I'm collecting here the events and the license usage for a yearly report &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
This saved search is run every hour to keep the load on the indexer small enough. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd group=per_sourcetype_thruput
| bucket span=1h _time
| stats sum(ev) as ev by series host _time
| rename series as sourcetype

| join type=left sourcetype
[ search index=_internal source=*license* type="Usage" 
| fields st, b, _time 
| bucket _time span=1h 
| stats sum(b) as b by st,_time 
| eval mb=round(b/1024/1024,3)
| rename st as sourcetype
]

| join type=left sourcetype
[
| eventcount summarize=false index=* index=_* | dedup index | fields index 
 | map maxsearches=100 search="|metadata type=sourcetypes index=\"$index$\" | eval index=\"$index$\""
 | fields index sourcetype
]
| eval index=if(isnull(index),"undefined",index)
| eval type="index_stats"
| fillnull value=0
| rename index as myindex, host as myhost, sourcetype as mysourcetype
| table _time, myindex, myhost, mysourcetype, ev, mb, b, type
| collect index=lic_summary
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Dec 2017 09:14:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351575#M164254</guid>
      <dc:creator>Elsurion</dc:creator>
      <dc:date>2017-12-21T09:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351576#M164255</link>
      <description>&lt;P&gt;This is the search I use for exactly this purpose.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|tstats count AS tscount by sourcetype, _time|timechart max(tscount) by sourcetype useother=false
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Dec 2017 10:26:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351576#M164255</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2017-12-21T10:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351577#M164256</link>
      <description>&lt;P&gt;I downvoted this post because never use index=*&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 11:32:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351577#M164256</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2017-12-21T11:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351578#M164257</link>
      <description>&lt;P&gt;Hi - I added this post - If you find it useful, please upvote the answer,  or add your own solution if you found another way!&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/606762/how-do-i-monitor-jbosstomcatapacheetc-and-raise-an.html"&gt;https://answers.splunk.com/answers/606762/how-do-i-monitor-jbosstomcatapacheetc-and-raise-an.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 21:57:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351578#M164257</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2017-12-28T21:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351579#M164258</link>
      <description>&lt;P&gt;thx everyone for their feedback, the query I am using is this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats count WHERE index=* GROUPBY sourcetype, _time span=1d | timechart span=1d sum(count) by sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;this seems to be working pretty good, but I can't filter sourcetypes that for example didnt receive any feeds for more than 24 hours&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2017 09:34:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351579#M164258</guid>
      <dc:creator>ecanmaster</dc:creator>
      <dc:date>2017-12-29T09:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: status of data feeds coming in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351580#M164259</link>
      <description>&lt;P&gt;&lt;A href="https://splunkbase.splunk.com/app/2949"&gt;Meta Woot!&lt;/A&gt; might also help answer some of these questions...&lt;/P&gt;</description>
      <pubDate>Sat, 30 Dec 2017 23:34:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/status-of-data-feeds-coming-in/m-p/351580#M164259</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2017-12-30T23:34:18Z</dc:date>
    </item>
  </channel>
</rss>

