Kibana 4: How to delete a saved search request

A trivial question, but I can’t figure out how to delete or clear saved queries in the Discover tab.

Thanks for any help.

+5
source share
2 answers

Go to "Settings", select the "Objects" tab, the "Search" tab, check the box next to what you want to delete, and click the "Delete" button.

+4
source

If you are using Kibana 5.6 and filebeat, then use the command to remove your search using devtools as shown below.

DELETE filebeat-* { "query": { "match_all": {} } } The output will be { "acknowledged": true 

and now, if you check the "Open" tab, all your searches should be deleted and it will start using filebeat-index. Here you delete the index you created.

+1
source

All Articles