关于elasticsearch:Elasticsearch-监控指标接入Prometheus

30次阅读

共计 704 个字符,预计需要花费 2 分钟才能阅读完成。

一、在 ES 集群中的每个节点(master、data、coordinate)部署 elasticsearch exporter;
1、下载 exporter:https://github.com/prometheus…
2、如果 ES 集群有用户明码鉴权性能,创立一个专用于监控的 remote_monitoring_user 用户,此用户 role 权限包含:remote_monitoring_agent、remote_monitoring_collector,
如果 ES 集群没有用户明码鉴权,且平安评估 OK 的话,则不须要专门创立监控用户。

3、解压并启动 exporter:

# 解压 exporter 安装包
tar -zxf elasticsearch_exporter-1.2.1.linux-amd64.tar.gz
 
# 应用后盾启动的形式启动 exporter,在此假如 ES 节点是 192.168.32.128:9200
nohup /path/elasticsearch_exporter --web.listen-address=192.168.32.128:9114 --es.uri=http://remote_monitoring_user:xxxxxx@192.168.32.128:9200 &(有 remote_monitoring_user 用户明码测验)nohup /path/elasticsearch_exporter --web.listen-address=192.168.32.128:9114 --es.uri=http://192.168.32.128:9200 &(无 remote_monitoring_user 用户明码测验)

正文完
 0