Created
May 20, 2015 08:59
-
-
Save rikkit/60ff289b742f5591c1dd to your computer and use it in GitHub Desktop.
highlight query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST applicationlogs/logentries/_search | |
{ | |
"query": { | |
"bool": { | |
"must": [ | |
{ | |
"term": { | |
"exception": "infomercial" | |
} | |
} | |
] | |
} | |
}, | |
"highlight": { | |
"fields": { | |
"exception": { | |
"number_of_fragments": 6, | |
"fragment_size": 20 | |
} | |
} | |
}, | |
"fields": ["highlight"] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"_index": "applicationlogs.2015-05", | |
"_type": "logentries", | |
"_id": "AU1A08N_t7g6ripTmN-X", | |
"_score": 0.3557864, | |
"highlight": { | |
"exception": [ | |
" <em>infomercial</em> he once", | |
" <em>infomercial</em> he once appeared" | |
] | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment