"status"=>400, "error"=>{"type"=>"mapper_parsing_exception", "reason"=>"failed to parse field [host] of type [text] in document with id 'xxxxxxx'.
added this to resolve the above
mutate {
rename => { "[host]" => "[host][name]" }
}
output:
"host"=>{"name"=>{"name"=>"brmop-dff102.site-mpp.local
I expected host field like host => "brmop-dff102.site-mpp.local" or host.name => "brmop-dff102.site-mpp.local"
"host": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
},
All the configurations are same. I recieve the below error
"status"=>400, "error"=>{"type"=>"mapper_parsing_exception", "reason"=>"failed to parse field [host.name] of type [text] in document with id 'qZYfkIsBrdR7-jvdNETu'.
After using latest logstash version 8.10.4. So many behavior seems to be breaking.
Althought ecs_compatibilty =>disabled.
Having same configuration between all the different logstash should behave the same.
If I upgrade the existing from logstash 7.17.6 to 8.10.4 I see all mapping issues. If I bring up the new setup I don't see the mapping exception. Please help me understand what's going on?