Support hebrew characters in logs

Hi All,
I have an issue with logstash parsing using grok:
When some hebrew characters are placed in the log the result i see is ?????? instead of the user name (for example: if the user name is בלהבלה i get ??????)

Is there a way to sort it out?
I've tried to use the following filter with no avail:
codec => plain{
charset => "UTF-8"
}

to better explain, this is how my input section looks like:
file{
path=> "C:\Patches\532915\Test999.txt"
start_position => "beginning"
codec => plain{
charset => "UTF-16"
}
}

and output:
output {
stdout { codec => rubydebug}
}

Thank you !

What character set does the log have?

the Input log is UTF-8 however, we are going to use splunk in the future.
Is there a way to force the input to be UTF-8?

Is there a way to force the input to be UTF-8?

I'd expect charset => "UTF-8" to work. If it doesn't I don't know what's up.

In a strange way, we have managed to solve this issue by adding:
codec => plain{
charset => "Windows-1252"
}

instead of UTF-8 (although the input is in UTF-8)....
Thank you !

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.