gpt4 book ai didi

elasticsearch - Logstash 6.0.0:elasticsearch的未知设置 ‘index_type’

转载 作者:行者123 更新时间:2023-12-03 01:40:55 25 4
gpt4 key购买 nike

我正在尝试在ELK 6.0.0 docker镜像上运行logstash配置文件,但出现此错误:
用于Elasticsearch的未知设置'index_type'

我正在检索Spark流统计信息并将其发送到elasticsearch,但是即使这个简单的任务也会返回错误。这是我的代码:

input {
graphite {
codec => "json"
port => 10513
host => "0.0.0.0"
}
}

output {
#stdout { codec => "json" }

elasticsearch {
codec => "json"
hosts => "localhost"
index => "spark-%{+YYYY.MM.DD}"
index_type => "spark"
}
}

最佳答案

I got this error: Unknown setting 'index_type' for elasticsearch



该错误表示它的意思。您的配置在elasticsearch输出中包含 index_type,但这不是有效的设置。

Logstash不允许您包含无法识别的设置。

你是说 document_type 吗?

关于elasticsearch - Logstash 6.0.0:elasticsearch的未知设置 ‘index_type’,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47653279/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com