Hello
I am a beginner in elastic
I want to ask can I transform an advanced search of elasticsearch indices in kibana Dev Tools into a dashboard
for example can I transform this get into a kibana dashboard or to a more lisible way, not a response in a json format
GET /rank-feature-test/_search
{
"query": {
"bool": {
"must": [
{
"match": {
"content": "2016"
}
}
],
"should": [
{
"rank_feature": {
"field": "pagerank"
}
},
{
"rank_feature": {
"field": "url_length",
"boost": 0.1
}
},
{
"rank_feature": {
"field": "topics.sports",
"boost": 0.4
}
}
]
}
}
}