18

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.

user2406187
  • 193
  • 1
  • 4

3 Answers3

17

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.

Alcanzar
  • 16,985
  • 6
  • 42
  • 59
3

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.

enter image description here

-1

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.

  • 4
    This is a dangerously bad answer. The question was "how to delete a previously saved search request", and I think this answer deletes all the data from the index. – pableu Dec 21 '21 at 16:30