I need help to generate a visualization. A term in one of my document indicies, 'temperature', is not in the drop down box of fields to visualize in kibana. What must I change so that 'temperature' shows up as a field in the drop down?
Situation:
- ES 5.1
- Dynamic Templates
- The field is present a portion of documents
- The index mapping interprets the field as a 'long'
In Discover, Kibana can filter the documents shows a table of "temperature" and "timestamp." I seek help to visualize the data shown in that table.
A filtered search for the term in the console yields a search result with documents.
GET /_search
{
"size" : 10,
"_source": ["temperature", "timestamp" ],
"query" : {
"term" : { "name" : "HomeThermostat" }
}
}