prometheus监控之elasticsearch监控(elasticsearch-exporter)

一、关于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带账号密码认证配置
Elasticsearch集群监控指标学习

你可能感兴趣的:(ElasticSearch)