filebeat

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/m0_38027358/article/details/84836714

wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-6.5.1-linux-x86_64.tar.gz

cd filebeat


vim filebeat.yml : add

 paths:
    - /var/test.log

output.elasticsearch:
  # Array of hosts to connect to.
  hosts: ["192.168.24.188:9200"]

启动 : ./filebeat -e -c filebeat.yml -d “publish”

echo 111111111 > /var/test.log

====================================================

ilebeat  ->  logstashf

output.logstash:
  hosts: ["localhost:5044"]
input{
        beats{
                port => 5044
        }
}
output{
        stdout{
                codec=>rubydebug
        }
}

echo filebeat-test.log-logstash > /var/test.log

猜你喜欢

转载自blog.csdn.net/m0_38027358/article/details/84836714