elasticsearch self monitoring 여부 확인
2025. 3. 2. 15:00ㆍk8s/EFK
셋팅 확인
enabled:true이면 자체 모니터링 사용중
curl -X GET "http://localhost:9200/_cluster/settings?include_defaults=true&pretty"
# 결과
"xpack": {
"monitoring": {
"collection": {
"enabled": "true"
}
}
indices 확인
.monitoring-*에 해당하는 indices가 있으면 자체 모니터링 사용중
curl -X GET "http://localhost:9200/_cat/indices/.monitoring-*?v"
# 결과
green open .monitoring-es-7-2025.03.01 ...
metricbeat 작동 확인
.monitoring- indices에 데이터가 쌓이지 않는데, 그래프가 나오는 경우
Index Management > Data Streams에 'metricbeat-버전'이 존재하는 경우
'k8s > EFK' 카테고리의 다른 글
metricbeat용 api_key 생성 (0) | 2025.03.02 |
---|---|
metricbeat 설치 (0) | 2025.03.02 |
max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]; for more information (0) | 2025.03.01 |
elasticsearch cluster 구성을 위한 인증서 생성 (0) | 2025.03.01 |
elasticsearch cluster 구성 (0) | 2025.03.01 |