I recently set up Filebeat on a Windows 2008 (R1) machine, to send my Exchange Server Message Tracking Logs to ELK. These are CSV files, which are split by logstash. However, the data only shows garbled lines, like this:
"_index": "logstash_exch-2015.12.20",
"_type": "ex_msg_trk",
"_id": "AVG_8dcYVabyR4iBti7U",
"_score": null,
"_source": {
"message": "\\xFD%\\x81\\u007F\\u0005\\u0000\\u0000\\xFF\\xFFò\\xF0r",
"@version": "1",
"@timestamp": "2015-12-20T15:11:15.440Z",
"host": "192.168.79.46",
"port": 24020,
"type": "ex_msg_trk"
The message looks very garbled. And this is only a short one, most of the time it's about 10 lines of this stuff.
I already tried to change the encoding type, but no success. However, if I change the output in Filebeat to file instead of logstash, everything looks fine.
Does this sound familiair to anyone?