일래스틱서치(elasticsearch) 6에서 템플릿 목록 보기
$ curl -s "http://es-server:9200/_cat/templates?v&s=order:desc,template"
name template order version
slowlog * 0
template_name google_api-* 0
특정 템플릿을 살펴보기
$ curl -s http://es-server:9200/_template/템플릿_이름 | python -mjson.tool
자세한 정보 나옴.
특정 템플릿 저장하기
$ curl -XPUT -H "Content-type:application/json" http://es-server:9200/_template/템플릿_이름 -d @파일이름
'Elasticsearch' 카테고리의 다른 글
[elasticsearch6] Content-Type header [application/x-www-form-urlencoded] is not supported 에러 (0) | 2018.06.14 |
---|---|
elasticsearch 6.3 출시 (0) | 2018.06.14 |
elasticsearch apm x-pack소개와 UI 캡쳐 화면 (0) | 2018.02.08 |
[elasticsearch6] pagination하기 - search_after 사용 (0) | 2018.02.01 |
[elasticsearch6] uuid-Fielddata is disabled on text fields by default 에러 해결하기 (0) | 2018.01.24 |