Please help, relatively new to Fluentd and get stuck with this *incoming chunk is broken*. My *workflow* goes like this
```
Java App----(Json /Tcp )----->Fluentd(port:24224) --------->Elasticsearch
````
Fluentd Config
<ROOT>
<match fluent.**>
@type null
</match>
<system>
log_level trace
</system>
<source>
@type forward
port 24224
bind "0.0.0.0"
</source>
<match **>
@type copy
<store>
@type "file"
path "/Users/davem/fluent/blah.txt"
<buffer time>
path "/Users/davem/fluent/blah.txt"
</buffer>
</store>
</match>
</ROOT>
Java Application logs this
{"thread":"localhost-startStop-1","level":"DEBUG","loggerName":"org.springframework.beans.factory.support.DefaultListableBeanFactory","message":"Creating instance of bean 'cxf'","endOfBatch":false,"loggerFqcn":"org.apache.logging.log4j.jcl.Log4jLog","instant":{"epochSecond":1550109138,"nanoOfSecond":512000000},"threadId":15,"threadPriority":5,"timestamp":"2019-02-13T19:52:18.512-0600"}
Fluentd Log
```
2019-02-13 19:41:49 -0600 [warn]: #0 incoming chunk is broken: host="127.0.0.1" msg={"thread"=>"localhost-startStop-1", "level"=>"DEBUG", "loggerName"=>"org.springframework.beans.factory.support.DefaultListableBeanFactory", "message"=>"Creating instance of bean 'cxf'", "endOfBatch"=>false, "loggerFqcn"=>"org.apache.logging.log4j.jcl.Log4jLog", "instant"=>{"epochSecond"=>1550108509, "nanoOfSecond"=>935000000}, "threadId"=>15, "threadPriority"=>5, "timestamp"=>"2019-02-13T19:41:49.935-0600"}
```