Skip to content

Instantly share code, notes, and snippets.

@rikkit
Created May 20, 2015 08:59
Show Gist options
  • Save rikkit/60ff289b742f5591c1dd to your computer and use it in GitHub Desktop.
Save rikkit/60ff289b742f5591c1dd to your computer and use it in GitHub Desktop.
highlight query
POST applicationlogs/logentries/_search
{
"query": {
"bool": {
"must": [
{
"term": {
"exception": "infomercial"
}
}
]
}
},
"highlight": {
"fields": {
"exception": {
"number_of_fragments": 6,
"fragment_size": 20
}
}
},
"fields": ["highlight"]
}
[
{
"_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