ElasticSearch 模板管理

查询模板

curl http://127.0.0.1:9200/_template/mytemplate*

创建模板

curl -XPUT -H "Content-Type:application/json" http://127.0.0.1:9200/_template/mytemplate-example -d '{ json 数据}'

删除模板

curl -XDELETE  http://127.0.0.1:9200/_template/mytemplate-example