반응형
6.5버전 이후로 exporter 대신 metricbeat로 키바나에 metric 을 보내는데..
처음 설정할땐 안그랬는데 두번째에서 메트릭을 가져오지 못했다.
찾아보니 설정을 또 따로 해줘야한다.
Elasticsearch 가 설치되어 있는서버에서 다음 설정으로 확인한다.
curl -X GET "localhost:9200/_cluster/settings?pretty"
아무런 설정이 되어있지 않았다.
아래 명령어로 설정을해주자
curl -X PUT "localhost:9200/_cluster/settings?pretty" -H 'Content-Type: application/json' -d'
{
"persistent": {
"xpack.monitoring.collection.enabled": true
}
}
'
확인해보니 잘올라온것을 볼수 있었다.
Reference
https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-metricbeat.html
반응형
'ElasticSearch' 카테고리의 다른 글
ElasticSearch에러: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] (0) | 2022.09.27 |
---|---|
[Elasticsearch 멀티 노드] node does not have the data role but has shard data 및bootstrap checks failed 에러 (2) | 2022.09.23 |
elasticsearch 자바 환경변수 설정 (0) | 2022.09.20 |
ElasticSearch primary shard 할당 에러 (0) | 2022.09.06 |
elasticsearch 자주쓰이는 명령어 (0) | 2022.09.02 |
댓글