如何将 elasticquery 转换成 kibana URL

How to convert elasticquery into kibana URL

我正在使用 kibana 6 仪表板来显示可视化。

我有一个像下面这样的弹性查询,它需要传入 kibana dashbaord URL :

{
  "query": {
    "bool": {
      "minimum_should_match": 1,
      "should": [
        {
          "match_phrase": {
            "jt_tax.keyword": "Partner"
          }
        },
        {
          "match_phrase": {
            "jt_tax.keyword": "IT"
          }
        }
      ]
    }
  }
}

如何在 Kibana 仪表板中将 ELASTIC QUERY 解析为查询参数 Url?

类似问题:

作为 kibana 的一部分传递过滤器 url:

https://discuss.elastic.co/t/dashboard-search-parameter-via-url/84385

https://discuss.elastic.co/t/passing-parameters-or-filter-in-kibana-url-from-web-app/141568

https://discuss.elastic.co/t/pass-filter-to-dashboard-url-in-markdown-menu/50991