从远程服务器将数据传递到elasticsearch

92dk7w1h  于 2021-06-10  发布在  ElasticSearch
关注(0)|答案(1)|浏览(244)

我有两台电脑,假设它们是服务器1和服务器2。logstash安装在server2中,elasticsearch配置在server1中。我要将筛选后的日志存储数据从服务器2发送到服务器1。我该做哪些配置(请给我一些配置文件的例子(conf文件,logstash.yml,elasticsearch.yml)

aemubtdh

aemubtdh1#

.conf文件:-

input {
    beats {
        port => 5044
    }
}

filter {
}

output {
        elasticsearch {
            id => "DOC_ID"
            document_type => "_doc"
            hosts => ["ELASTICSEARCH_HOST"]
            index => "INDEX_NAME"
        }
    }
}

相关问题