gpt4 book ai didi

fluentd - 如何为我的流利事件添加标签

转载 作者:行者123 更新时间:2023-12-05 00:49:31 25 4
gpt4 key购买 nike

我写

<source>
@type tail
format nginx
path /home/work/opt/nginx/var/log/access.log
tag nginx.access
</source>

在我的 fluent.conf 文件中并匹配到 stdout,但是当我对我的网站进行 post 调用时,nginx 将访问其日志,但 fluentd_ui 建议

 [warn]: no patterns matched tag="nginx.access"

如何给我的http请求添加标签?

最佳答案

<source>
@type tail
path /var/log/nginx/access.log
pos_file /var/log/access.log.pos
tag apache.access
format nginx
</source>

<match apache.access>
@type stdout
</match>

尝试运行这个 conf 文件代码。我认为您将能够解决您的问题!

关于fluentd - 如何为我的流利事件添加标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39485486/

25 4 0