Facing issues with KVStore on Enterprise Security. Dashboards show an error "Unable to load results". Is there any command to check KVStore status?
use the following command on nix systems, which should return **ready/starting/failed/disabled*
curl -k -s https://localhost:8089/services/server/info | grep kvstore
"splunk show kvstore-status"
No, Actually I need to check the status of output of that particular command , Like other application if we click command rating we can see the complete details like output of command , source etc.
Here i click command i can see the events only
Any thoughts
I tried every possible commands, but no return:
curl -k -s https://localhost:8089/services/server/info | grep kvstore
use the following command on nix systems, which should return **ready/starting/failed/disabled*
curl -k -s https://localhost:8089/services/server/info | grep kvstore
Here is way to do it via SPL:
| rest splunk_server=local count=1 /services/server/info
| table kvStoreStatus
Its status is starting and I restarted the servers.. Its still starting. How long does it takes to change state?
FYI - you may want to add -i to the grep, as the version I am using does not return anything with the above command, as the output from the curl is mixed case:
<s:key name="kvStoreStatus">ready</s:key>
This works:
curl -k -s https://localhost:8089/services/server/info | grep -i kvstore