Remove time and tag from fluentd output plugin stdout with json
Fluentd's output plugin produces output like:
2017-11-28 11:43:13.814351757 +0900 tag: {"field1":"value1","field2":"value2"}
So timestamp and tag are before the json. How can I remove these fields - I only like to have the json output
<match pattern>
@type stdout
</match>
expected output: {"field1":"value1","field2":"value2"}