How to convert elasticquery into kibana URL

£可爱£侵袭症+ 提交于 2019-12-24 10:21:18

问题


i am using kibana 6 dashboard to show visualization.

i have a elastic query like below and it need to pass in kibana dashbaord URL :

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

How to parse the ELASTIC QUERY into query parameter in Kibana dashboard Url?


回答1:


Similiar issues:

Passing the filter as part of the 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



来源:https://stackoverflow.com/questions/53020977/how-to-convert-elasticquery-into-kibana-url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!