0

我们已经在 AWS 中配置了 OpenSearch。我们需要使用 Fluent Bit 将两个不同的应用程序日志发送到 OpenSearch 中的两个不同索引。我们使用 tail 作为 INPUT 和 ES 作为 OUTPUT。请在下面找到 fluent-bit 配置 -

输入 -

[INPUT]
name tail
path /var/log/messages
Refresh_Interval 1
Tag messages
Path_Key On
read_from_head true

[INPUT]
name tail
path /var/log/secure
Refresh_Interval 1
Tag secure
Path_Key On
read_from_head true

输出 -

[OUTPUT]
Name  es
Match *
Host  opensearch-url
Port  443
HTTP_User admin
HTTP_Passwd ************
tls     On
tls.verify Off
Include_Tag_Key On
Tag_Key tag
4

0 回答 0