我有两台电脑,假设它们是服务器1和服务器2。logstash安装在server2中,elasticsearch配置在server1中。我要将筛选后的日志存储数据从服务器2发送到服务器1。我该做哪些配置(请给我一些配置文件的例子(conf文件,logstash.yml,elasticsearch.yml)
aemubtdh1#
.conf文件:-
input { beats { port => 5044 } } filter { } output { elasticsearch { id => "DOC_ID" document_type => "_doc" hosts => ["ELASTICSEARCH_HOST"] index => "INDEX_NAME" } } }
1条答案
按热度按时间aemubtdh1#
.conf文件:-