I have an index that has a number of different fields that use different units of measurement. When we view some of the this data in Discover, it would be nice if we could see what unit of measurement each field has, without having to change the underlying index template.
For example if my template has mappings that look like this:
"properties" : {
"id" : { "type" : "integer" },
"timeToProcess" : { "type" : "date" },
"range" : { "type" : "double" },
"rangeDeviation" : { "type" : "double" }
}
Is it possible for me to have my index pattern display this like:
id: 1
timeToProcess (ms): 500
range (m): 200
rangeDeviation (m): 4.5
I post data to the index through a java client which uses the objects structure to map to the template, so it's not like I am just able to change the variable name to include a (m), as this would not compile in java.
I found this post from about 2 and a half years ago asking a similar type of question, but the linked github ticket has not been resolved by the looks of it.