我无法使用以下映射为我的数据进行映射。在elasticsearch索引中,“整数输入”字段显示为“文本”。 以下是json模板文件和logstash配置文件
的部分template.json
{
"mappings":{
"_doc":{
"properties":{
"textinput":{
"type":"text"
},
"name":{
"type":"text"
},
"integerinput":{
"type":"integer"
}
}
}
}
}
logstash配置文件:
output {
elasticsearch {
ssl => true
manage_template => true
user => 'elastic'
password => '******'
hosts => "https://elasticip:port"
cacert => '/path to certificate file'
index => "template-mapping-index"
template => "/path to template/template.json"
}
}
有人在我误服的地方帮我