是否可以通过查询在 kibana 上更改/设置过滤器值

问题描述 投票:0回答:0

我得到了多个可视化,这些可视化过滤了相同的字段和值,值 = x。

{
  "query": {
    "bool": {
      "should": [
        {
          "match_phrase": {
            "value.keyword": "x"
          }
        }
      ],
      "minimum_should_match": 1
    }
  }
}

有时我需要更改那个值,我想避免输入每个可视化并更改它,是否可以自动化该过程?

是否可以通过查询更改/设置过滤器值?

kibana querydsl elk opensearch amazon-opensearch
© www.soinside.com 2019 - 2024. All rights reserved.