logtash 接收多配置文件
Posted BigBao的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了logtash 接收多配置文件相关的知识,希望对你有一定的参考价值。
[[email protected] etc]# vim front_esb.conf input { beats { type => beats port => 5077 } } filter { if [type] == ‘test-front‘ { grok { overwrite => [‘message‘] } } if [type] == ‘test-esb‘ { grok { overwrite => [‘message‘] } } } output { if [type] == ‘test-front‘ { elasticsearch { hosts => ["10.19.148.59:9200"] index => "test-front-%{+YYYY.MM.dd}" } } if [type] == ‘test-esb‘ { elasticsearch { hosts => ["10.19.148.59:9200"] index => "test-esb-%{+YYYY.MM.dd}" } } }
我这里的日志采集用的是filebeat 来采集日志的
以上是关于logtash 接收多配置文件的主要内容,如果未能解决你的问题,请参考以下文章