Hi, in our elastic index we see data in the tags object like this:
tags {
"key": "Brand",
"value": "Hugo Boss"
},
{
"key": "ProductType",
"value": "EdT"
},
{
"key": "ScentType",
"value": "Frisk"
},
{
"key": "Size",
"value": "125 ml"
}
The mapping looks finne ?
"tags": {
"type": "nested",
"properties": {
"key": {
"type": "keyword"
},
"value": {
"type": "keyword",
"eager_global_ordinals": true
}
}
},
But the field is listed as Unknown in Kibana
Any suggestions on how to fix this?
Litium version: 7.4