logstash配置output到exec

2018-04-28 11:44:09 浏览数 (1)

场景

监控文件内容发送告警

配置

代码语言:javascript复制
input {
    stdin {
        type => 'demo-stdin'
        add_field => {"test" => "hello"}
        codec => "plain"
        tags => ["stdin-test"]
    }
}

output {
    exec {
        command => "/usr/bin/php /data/test/test/test.php "%{message}" "
    }
}

备注

尽量不要执行消耗时间程序

0 人点赞