Hi,
I am using Kibana 4.6.4.
I have noticed that some JSON searches in a Dashboard are run using the query context, others the filter context.
Example:
{ "more_like_this":{"like" : "Lorem Ipsum..."} }
=> { "query": { "filtered": { "filter": { "bool": { "must": [{ "query": {"more_like_this":{"like" : "Lorem Ipsum..." } } } ] } } } } }
{ "query_string": { "query": "Lorem Ipsum..." } }
=> { "query": { "filtered": { "query": { "bool": { "must": [{ "query_string": { "query": "Lorem Ipsum..." } }] } } } } }
How can I have my MLT search results sorted by relevance in the Dashboard?