更改输出编解码器编辑

对于不需要特定编码的输出,您可以使用 codec 配置更改编码。您可以指定 jsonformat 编解码器。默认情况下,使用 json 编解码器。

json.pretty:如果 pretty 设置为 true,则事件将格式化。默认值为 false。

json.escape_html:如果 escape_html 设置为 true,则字符串中的 html 符号将被转义。默认值为 false。

使用启用了格式化的 json 编解码器将事件写入控制台的示例配置

output.console:
  codec.json:
    pretty: true
    escape_html: false

format.string:用于创建自定义格式消息的可配置格式字符串。

使用 format 编解码器将事件时间戳和消息字段打印到控制台的可配置示例

output.console:
  codec.format:
    string: '%{[@timestamp]} %{[message]}'