Hi, I have two metricbeats with diferent versions pointing to the same elasticsearch, the difference between their mapping is causing me problems when I try to use the control visualization in kibana.
if i choose to use the field psql.name.keyword
only the values of the index metricbeat-7.17.9
appears in the dropdown.
if i choose to use the field psql.name
only the values of the index metricbeat-7.17.5
appears in the dropdown.
These are the mapping of the indexes:
{
"metricbeat-7.17.9" : {
"mappings" : {
"psql.name" : {
"full_name" : "psql.name",
"mapping" : {
"name" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
}
}
}
}
}
}
"metricbeat-7.17.5" : {
"mappings" : {
"psql.name" : {
"full_name" : "psql.name",
"mapping" : {
"name" : {
"type" : "keyword",
"ignore_above" : 1024
}
}
}
}
}
Any ideas on how to solve this?
Thanks!