关于ElasticSearch:prometheus监控之elasticsearch监控elasticsearchexporter

29次阅读

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

一、对于 elasticsearch-exporter

elasticsearch_exporter 与 ES 集群是离开独立,不须要对原有的 ES 集群 (可能有很多个) 做任何批改,不须要重启,只有能拜访 es 集群即可。

二、装置

1. 下载 elasticsearch_exporter-1.1.0.linux-amd64.tar.gz 安装包并解压到 /usr/local 目录
抉择对应的版本进行下载:elasticsearch_exporter

# 下载
wget https://github.com/justwatchcom/elasticsearch_exporter/releases/download/v1.1.0/elasticsearch_exporter-1.1.0.linux-amd64.tar.gz
# 解压
tar -xvf elasticsearch_exporter-1.1.0.linux-amd64.tar.gz
cd elasticsearch_exporter-1.1.0.linux-amd64/

三、启动

1. 罕用参数解释

## 参数阐明:--es.uri             默认 http://localhost:9200,连贯到的 Elasticsearch 节点的地址(主机和端口)。这能够是本地节点(例如 localhost:9200),也能够是近程 Elasticsearch 服务器的地址
--es.all                默认 flase,如果为 true,则查问群集中所有节点的统计信息,而不仅仅是查问咱们连贯到的节点。--es.cluster_settings   默认 flase,如果为 true,请在统计信息中查问集群设置
--es.indices            默认 flase,如果为 true,则查问统计信息以获取集群中的所有索引。--es.indices_settings   默认 flase,如果为 true,则查问集群中所有索引的设置统计信息。--es.shards             默认 flase,如果为 true,则查问集群中所有索引的统计信息,包含分片级统计信息(意味着 es.indices = true)。--es.snapshots          默认 flase,如果为 true,则查问集群快照的统计信息。

2. 只有设置不同的 -web.listen-address 监听端口,可启动多个实例,别离监控不同的 ES 集群:

# es 集群 1:10.xxx.xxx.10:9200
nohup ./elasticsearch_exporter --es.all --es.indices --es.cluster_settings --es.indices_settings --es.shards --es.snapshots --es.timeout=10s --web.listen-address=":9114" --web.telemetry-path="/metrics" --es.uri http://10.xxx.xxx.10:9200 &
 
# es 集群 2:10.xxx.xxx.11:9200
nohup ./elasticsearch_exporter --es.all --es.indices --es.cluster_settings --es.indices_settings --es.shards --es.snapshots --es.timeout=10s --web.listen-address=":9115" --web.telemetry-path="/metrics" --es.uri http://10.xxx.xxx.11:9200 &

3. 如果 es 集群开启了 x -pack 验证则能够应用如下:

nohup ./elasticsearch_exporter --es.all --es.indices --es.cluster_settings --es.indices_settings --es.shards --es.snapshots  --es.uri http:// 用户名: 明码 @111.xxx.xxx.6:9200 &

四、prometheus 配置及 grafana 配置

  1. prometheus 配置
- job_name: 'elasticsearch'  
    static_configs:
    - targets: ['111.xx.xxx.1:9114']

2.grafana 配置
导入 2322 模板
下载地址:https://grafana.com/grafana/dashboards/2322

五、参考附录

Elasticsearch 集群监控:elasticsearch_exporter + Prometheus + Grafana
Prometheus + Grafana(十)系统监控之 Elasticsearch
elasticsearch_exporter 带账号密码认证配置

正文完
 0