A trivial question but I can't figure how to remove or clean some saved requests in the Discover tab.
Thank's for any help.
A trivial question but I can't figure how to remove or clean some saved requests in the Discover tab.
Thank's for any help.
Go into Settings, select the Objects tab, the Searches sub-tab, hit the checkbox next to anything you want to remove, and hit the delete selected button.
In recent version of Kibana you need to go to: Stack management -> Saved objects, select the saved searches that you want to delete and press the Delete button.
If you are using Kibana 5.6 and a filebeat, then use the follwing to delete your search using the devtools is as following
DELETE filebeat-*
{
"query": {
"match_all": {}
}
}
The output will be
{
"acknowledged": true
and now, if you check the discover tab, all your searches should be deleted which starts using the filebeat- index. Here you are deleting the index you created.