ELK:filebeat采集springboot日志

本篇介绍如何通过filebeat来采集springboot日志

1、设置springboot日志输出路径

logging:
  file:
    path: D:/logs

2、设置filebeat配置参数

编辑filebeat.yml文件的filebeat.inputs参数

filebeat.inputs:
- type: log
  enabled: true
  paths:
    - D:\logs\*
  json.keys_under_root: true
  json.overwrite_keys: true
  tags: ["tomcat"]
 
  exclude_files: ['.gz$']






扫描下方二维码,关注公众号:程序进阶之路,实时获取更多优质文章推送。


扫码关注

评论