'Kibana 4 : How to remove saved discover request
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.
Solution 1:[1]
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.
Solution 2:[2]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ????? ??????? |
| Solution 2 |

