1

我用 grafana loki 设置了 fluentd,由于我有多个微服务将日志传播到 fluentd,我无法区分和过滤 Grafana 中的日志。谁能帮我将我的标签添加为标签,以便我可以像在 grafana {tag:"tag.name"} 中查询它。我在下面添加了流利的配置。

<match TEST.**>
  @type loki  
  url "http://localhost:3100" 
 flush_interval 1s 
 flush_at_shutdown true 
 buffer_chunk_limit 1m  
extra_labels {"job":"TEST", "host":"ward_workstation", "agent":"fluentd"}  
<label>    
  filename  
</label>
</match>
4

1 回答 1

1

使用动态标签

<filter TEST.**>
    @Type record_transformer
      <record>
        tag_name ${tag}
</record>
</filter>



<match TEST.**>
  @type loki  
  url "http://localhost:3100" 
 flush_interval 1s 
 flush_at_shutdown true 
 buffer_chunk_limit 1m  
extra_labels {"job":"TEST", "host":"ward_workstation", "agent":"fluentd"}  
<label>    
  tag_name
</label>
</match>
于 2020-04-29T20:11:52.170 回答