Hi,
Using Filebeat 5.1 (latest).
Currently when I log one line with message "hello", it comes in Kafka as this:
{"@timestamp":"2017-01-23T19:42:22.991Z","beat":{"hostname":"ip-10-0-14-90","name":"ip-10-0-14-90","version":"5.1.2"},"input_type":"log",**"message":"hello"**,"offset":1010655016,"source":"/var/log/abc.log","type":"log"}
Is there a way to get only "hello" into kafka? I don't need the meta information. I see that in Logstash, you can use format => "%{message}". Is a similar thing provided here?