본문 바로가기
ElasticSearch

Elasticsearch 와 metircbeat 연결(연동) 안될때

by Rainbound-IT 2022. 9. 23.
반응형

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

 

Collecting Elasticsearch monitoring data with Metricbeat | Elasticsearch Guide [8.4] | Elastic

In production environments, we strongly recommend using a separate cluster (referred to as the monitoring cluster) to store the data. Using a separate monitoring cluster prevents production cluster outages from impacting your ability to access your monitor

www.elastic.co

 

반응형

댓글