I am using head plugin to access the elastic search through GUI and cluster plugin to cluster the data.
So is there anyway I can display any particular field in GUI of elasticsearch.
For ex:
If my query is {
"search_request": {
"fields": [
"Content"
],
"query": {
"match": {
"_all": "mobile"
}
}
},
"field_mapping": {
"content": [
"fields.Content"
]
},
}
And response will be everything as took, size, data, label, clusters, phrases etc.
So is there any way I can display only label/cluster in elasticsearch GUI with the help of any other plugin or other way out.
If you're doing a _search on the "Any Request" tab in head, there is a
Result Transformer section at the bottom of your search query. In there you
can write a simple transform script. For example, the following script
displays only the took and the hits values:
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.