Eu costumava ter o ElasticSearch 5.2 e atualizei para 6.0.
Estou tentando criar um modelo de índice seguindo o guia aqui , mas ocorreu um erro
Content-Type header [application/x-www-form-urlencoded] is not supported
Minha consulta é
curl -X PUT localhost:9200/_template/template_1 -d '
{
"index_patterns": ["te*", "bar*"],
"mappings": {
"type1": {
"properties": {
"host_name": {
"type": "keyword"
}
}
}
}
}'