<?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 How to find KVStore status in internal logs in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401233#M95890</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I have got a task where I have to find the KVStore status through Splunk internal logs. I neither have access to Monitoring Console  nor I can run the CLI commands. I have only access to Splunk internal logs. Could you please help me with this? thanks, Santosh &lt;/P&gt;</description>
    <pubDate>Thu, 22 Nov 2018 09:53:42 GMT</pubDate>
    <dc:creator>santosh_hb</dc:creator>
    <dc:date>2018-11-22T09:53:42Z</dc:date>
    <item>
      <title>How to find KVStore status in internal logs</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401233#M95890</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I have got a task where I have to find the KVStore status through Splunk internal logs. I neither have access to Monitoring Console  nor I can run the CLI commands. I have only access to Splunk internal logs. Could you please help me with this? thanks, Santosh &lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 09:53:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401233#M95890</guid>
      <dc:creator>santosh_hb</dc:creator>
      <dc:date>2018-11-22T09:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to find KVStore status in internal logs</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401234#M95891</link>
      <description>&lt;P&gt;I guess it depends on what you mean by "status".&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal kvstore
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Will get you something - metrics, which might tell you enough, and other things too.&lt;/P&gt;

&lt;P&gt;I expect you will like this next thing better, though - there's a whole REST thing you can do, if you have those rights.  Give it a try and see...&lt;/P&gt;

&lt;P&gt;like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /servicesNS/nobody/MYAPP/storage/collections/config
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;will show you all the configured collections in app MYAPP, and &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /servicesNS/nobody/MYAPP/storage/collections/data/COLLECTIONNAME
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Will show you the data, which you could always &lt;CODE&gt;| stats count&lt;/CODE&gt; or something.&lt;/P&gt;

&lt;P&gt;You can use some of the stuff from the &lt;A href="http://dev.splunk.com/view/webframework-developapps/SP-CAAAEZG"&gt;REST API docs&lt;/A&gt; to do this, but know that you can't edit  anything from &lt;CODE&gt;| rest&lt;/CODE&gt; in Splunk, because security.  (Which I'm not sure makes sense since curl can, with the right password?  What?  Anyway, no worries on that).&lt;/P&gt;

&lt;P&gt;Anwyay, those examples can be modified like my examples to do things.&lt;/P&gt;

&lt;P&gt;If that's what you needed, great. If it isn't, well, tell us more specifically exactly what it is you need - WHAT status are you looking for? - and maybe we can help!&lt;/P&gt;

&lt;P&gt;-Rich&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 03:08:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401234#M95891</guid>
      <dc:creator>Richfez</dc:creator>
      <dc:date>2018-11-23T03:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to find KVStore status in internal logs</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401235#M95892</link>
      <description>&lt;P&gt;Hi Rich, Thanks for sharing the details. My issue is: I want to fetch the KVStore running status (Success/Failure/...) from multiple hosts.&lt;BR /&gt;
I need something like below:&lt;/P&gt;

&lt;P&gt;Hostname         KVStore status&lt;BR /&gt;&lt;BR /&gt;
host1                  running&lt;BR /&gt;
host2                  failed&lt;/P&gt;

&lt;P&gt;thanks,&lt;BR /&gt;
Santosh&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 09:55:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401235#M95892</guid>
      <dc:creator>santosh_hb</dc:creator>
      <dc:date>2018-11-23T09:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to find KVStore status in internal logs</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401236#M95893</link>
      <description>&lt;P&gt;In &lt;A href="https://splunkbase.splunk.com/app/3796"&gt;Alerts for SplunkAdmins&lt;/A&gt; , or &lt;A href="https://github.com/gjanders/SplunkAdmins/"&gt;github&lt;/A&gt; I have:&lt;BR /&gt;
AllSplunkEnterpriseLevel - KVStore Process Terminated&lt;BR /&gt;
SearchHeadLevel - Detect MongoDB errors&lt;/P&gt;

&lt;P&gt;And/or potentially SearchHeadLevel - KVStore Or Conf Replication Issues Are Occurring&lt;/P&gt;

&lt;P&gt;They might provide detection of when it is crashing, the mongodb checks the logs are still updating which is a sign of it running...&lt;/P&gt;</description>
      <pubDate>Sat, 24 Nov 2018 21:04:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-find-KVStore-status-in-internal-logs/m-p/401236#M95893</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2018-11-24T21:04:20Z</dc:date>
    </item>
  </channel>
</rss>

