Ich hatte ElasticSearch 5.2 und habe gerade ein Upgrade auf 6.0 durchgeführt.
Ich versuche , eine Index - Vorlage folgende Anleitung erstellen hier , bekam aber Fehler
Content-Type header [application/x-www-form-urlencoded] is not supported
Meine Anfrage ist
curl -X PUT localhost:9200/_template/template_1 -d '
{
"index_patterns": ["te*", "bar*"],
"mappings": {
"type1": {
"properties": {
"host_name": {
"type": "keyword"
}
}
}
}
}'