How to convert elasticquery into kibana URL

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?

Hi,

Interesting question. Why do you need to pass this URL in Kibana dashboard?

So Kibana dashboards are made up of either saved searches or visualizations. You can create a saved search in your discover by using this query and then add it to a dashboard.

Thanks,
Bhavya

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.