Hello everyone,
I know how to get a response query from a request query that i get with the following command:
$ curl -XGET 'http://localhost:9200/twitter/tweet/_search?routing=kimchy' -d '{
"query": {
"bool" : {
"must" : {
"query_string" : {
"query" : "some query string here"
}
},
"filter" : {
"term" : { "user" : "kimchy" }
}
}
}
}
'
However, i would like to inject the response query in kibana in order to get the corresponding graph. i don't know if it is possible and if yes how to do it.
Cheers,
S