当前位置: 首页 > 工具软件 > xpack > 使用案例 >

【Logstash】【Elasticsearch】logstash连接elasticsearch访问xpack问题解决

佴淮晨
2023-12-01

logstash连接elasticsearch作为output的时候连接xpack组件解决方案

添加配置项ilm_enabled

output {
    elasticsearch {
        hosts => ["http://xxx.xxx.xxx.xxx:9200"]
        user => "xxx"
        password => "xxx"
        index => "test1"
        ilm_enabled => false
}
}
 类似资料: