Disable time and tags in fluentd stdout output plugin Disable time and tags in fluentd stdout output plugin kubernetes kubernetes

Disable time and tags in fluentd stdout output plugin


Set the json format type which by default doesn't includes time and tag in output:

<match pattern>  @type stdout  <format>    @type json  </format></match>


Did you try filters?

<filter pattern>  @type record_transformer  <record>      ${tag}  </record></filter>