get 요청에서 _mapping 명령어 사용시 각 필드의 데이터 타입이 무엇인지 확인 할 수 있다.
GET camo_system_logs/_mapping
{
}
{
"camo_system_logs" : {
"mappings" : {
"properties" : {
"cluster" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
},
"cpu_usage_per" : {
"type" : "float"
},
"disk_total" : {
"type" : "long"
},
"disk_usage" : {
"type" : "long"
},
"host" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
},
"ipaddr" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
},
"loadavg" : {
"type" : "float"
},
"mem_free" : {
"type" : "float"
},
"mem_total" : {
"type" : "float"
},
"mem_used" : {
"type" : "float"
},
"part_name" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
},
"part_usage" : {
"type" : "long"
},
"systemtime" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
}
}
}
}
}
'ElasticSearch' 카테고리의 다른 글
Elasticsearch 기본개념 정리 (1) : Elasticsearch의 개념과 특징, 노드(node) 그리고 클러스터(cluster)에 대해서 (0) | 2022.12.25 |
---|---|
ElasticSearch - inculde (0) | 2022.11.02 |
ElasticSearch - _delete_by_query 사용 (0) | 2022.03.16 |
ElasticSearch - 인덱스의 최대 필수 개수 제한 설정과 Aggregation 사용시 유념할 점 (0) | 2022.02.25 |
ElasticSearch - DSL(Domain Specific Language) 이란 무엇인가? (0) | 2022.02.23 |