2019-08-12 Logstash 收集多个日志文件存放到不

2019-08-12  本文已影响0人  刘明_d589

在logstash配置文件中,可以使用不同的type指定每个输入。
然后在过滤器中可以使用if来区分不同的处理,
并且在输出端可以使用“if”输出到不同的目的地。

input {
    file {
            type => "technical"
            path => "/home/technical/log"
    }
    file {
            type => "business"
            path => "/home/business/log"
    }
} 
filter {
    if [type] == "technical" {
            # processing .......
    }
    if [type] == "business" {
            # processing .......
    }
}
output {
    if [type] == "technical" {
            # output to gelf
    }
    if [type] == "business" {
            # output to elasticsearch
    }
}

参考(https://codeday.me/bug/20170716/38088.html

上一篇 下一篇

猜你喜欢

热点阅读