Avevo ElasticSearch 5.2 e ho appena aggiornato a 6.0.
Sto cercando di creare un modello di indice seguendo la guida qui , ma ho riscontrato un errore
Content-Type header [application/x-www-form-urlencoded] is not supported
La mia domanda è
curl -X PUT localhost:9200/_template/template_1 -d '
{
"index_patterns": ["te*", "bar*"],
"mappings": {
"type1": {
"properties": {
"host_name": {
"type": "keyword"
}
}
}
}
}'