Hi
We have fluentd which is sending logs from client server to our main ELK Server.
In the Kibana, when i read the logs, there is lot of garbage data that comes along with the message.
This is the message that we get from Kibana
\x92\xACsys.messages\xDB\u0000\u0000\u0003\u001A\x92\xCEU\xC1\x9FY\x84\xA4host\xAFip\xA5ident\xA9freshclam\xA3pid\xA48721\xA7message\xDA\u00009ClamAV update process started at Wed Aug 5 11:00:01 2015\x92\xCEU\xC1\x9FY\x84\xA4host\xAFip-10-20-12-209\xA5ident\xA9freshclam\xA3pid\xA48721\xA7message\xDA\u0000Nmain.cvd is up to date (version: 55, sigs: 2424225, f-level: 60, builder: neo)\x92\xCEU\xC1\x9FZ\x84\xA4host\xAFip-
The message comes but it's like encoded between lot of garbage data.
Our Configuration of Logstash :-
input {
syslog {
host => "0.0.0.0"
port => 5141
}
}
output {
stdout { }
elasticsearch {
}
}
If we use rsyslog instead of fluentd, the logs comes in proper manner.
Any help will be appreciated.
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "Fluentd Google Group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/fluentd/jZcekZ-VB3w/unsubscribe.
To unsubscribe from this group and all its topics, send an email to fluentd+u...@googlegroups.com.
Zeal,
One option is to use Fluentd on the receiver too and use out_elasticsearch. This approach is proven to scale at many companies.
Unfortunately, the Fluentd core team does not maintain Logstash's Fluentd codec. You should report to the authors of Logstash's Fluentd codec library.
What are the reasons for running Fluentd on edge but Logstash for the aggregator?
Kiyoto