Hi there,
I have some issues with Ö Ü Ä ö ü ä á ó é etc.
Codec plain is installed!
log = csv by log4j2 standard charset ISO-8859-1
My Config:
Filebeat:
- type: log
encoding: ISO-8859-1
Logstash:
input {
beats {
port => "5044"
codec => plain {charset => "ISO-8859-1"}
}
}
My results are:
Ö = ö
Ü = ü
Ä = ä
á & ó = á
é = é
I tried also with CP1252 and many other charsets!
What I did as a workaround I replace the chars manualy because logstash ignore them:
mutate{
gsub => [
"Name", "ä", "ae",
"Name", "ö", "oe",
"Name", "ü", "ue",
"Name", "é", "e"
]
}
But what, that should not be the common way to handle this.
I want "Umlaute"
What should I do to get my expected results?
Thanks in advance
Regards