I have query for searching specific occurrences in Kibana, this query is saved among other searches, is there a way I can change it programmatically via for example a REST call?
相关问题
- Design RESTful service with multiple ids
- Axios OPTIONS instead of POST Request. Express Res
- Plain (non-HTML) error pages in REST api
- Laravel 5.1 MethodNotAllowedHttpException on store
- not found value index error on elastic4s
相关文章
- es 单字段多分词器时,textField.keyword无法高亮
- ElasticSearch: How to search for a value in any fi
- What are the disadvantages of ElasticSearch Doc Va
- Got ActiveRecord::AssociationTypeMismatch on model
- Multiple parameters in AngularJS $resource GET
- Global Exception Handling in Jersey & Spring?
- NoNodeAvailableException[None of the configured no
- REST search interface and the idempotency of GET
Everything is stored in
.kibana
index and you can update your settings by aput request
into elasticsearch but it's not recommended.You can edit your saved search in
kibana/settings/objects
.As @Mohammad said, All metadata related to Kibana is stored under
.kibana
index in elasticsearch cluster. All searches, visualization, dashboards are stored in their respective types in.kibana
index. e.g searches are stored undersearch
type in.kibana
index.Get all searches by executing following command:
Retrieve
search-id
for which you want to update the query from the above results.Now you can update that specific
search
document by using_update
API as shown below:Consider the following warning message from Kibana if you are not advanced user: