You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"message" => "{\"message\":\"Aug 12 09:32:33 app1 root: TEST TEST TEST ÉÉÉÉÉÉÉ ééééééé\",\"@version\":\"1\",\"@timestamp\":\"2014-08-12T13:32:34.386Z\",\"tags\":\"production\"],\"domain\":\"mydomain.com\",\"log-type\":\"app-production\",\"file\":\"/var/log/syslog\",\"host\":\"app1.mydomain.com\",\"offset\":\"13833\",\"t",
"@version" => "1",
"@timestamp" => "2014-08-12T13:32:35.008Z"
}
All fields / tags get their double quotes escaped and they are not treated
like fields anymore and part of the message. If there is not 'é','É', 'à'
etc... everything works #1. Tried without the codec config and with
json_lines instead.
without the codec => json, I lose all fields / tags from the message
with codec => json_lines , it's the same behavior of the fields getting
escaped.
Looks like an encoding / accentuated char thing being not treated well.
The text was updated successfully, but these errors were encountered:
(This issue was originally filed by @plarivee at elastic/logstash#1807)
A log line with an accentuated character messed up
all tags and field.
Setup is host ( ls-forwarder) => logstash ( shipper ) => logstash (
receiver ) => redis
So here is the case :
On the server:
Sending test log line::
Now on the Shipper receiving the log from the server:
Shipper config :
###############
input {
lumberjack {
port => 5043
ssl_certificate => "mycert.crt"
ssl_key => "mycert.key"
add_field => {
"domain" => "mydomain.com"
"log-type" => "app-production"
}
tags => ["production"]
}
}
output {
lumberjack {
hosts => "xxx.xxx.xxx.xxx"
port => 5043
ssl_certificate => "theothercert.crt"
codec => "json"
}
}
################
stdout debug ::
Now, the shipper sends it to the receiver :
shipper => receiver ( lumberjack (logstash) => lumberjack (logstash) )
Receiver config :
stdout debug ::
All fields / tags get their double quotes escaped and they are not treated
like fields anymore and part of the message. If there is not 'é','É', 'à'
etc... everything works #1. Tried without the codec config and with
json_lines instead.
without the codec => json, I lose all fields / tags from the message
with codec => json_lines , it's the same behavior of the fields getting
escaped.
Looks like an encoding / accentuated char thing being not treated well.
The text was updated successfully, but these errors were encountered: