使用prometheus监控ES

文章描述了如何下载和运行ElasticsearchExporter来收集指标,然后配置Prometheus进行监控,并在Grafana中添加Es的监控模板以展示数据。此外,还展示了设置告警规则以在ES服务出现问题时触发警告。
摘要由CSDN通过智能技术生成

下载elasticsearch_exporter

wget 下载二进制包并解压、运行:

wget https://github.com/prometheus-community/elasticsearch_exporter/releases/download/v1.3.0/elasticsearch_exporter-1.3.0.linux-amd64.tar.gz

tar -xvf elasticsearch_exporter-1.3.0.linux-amd64.tar.gz

mv elasticsearch_exporter-1.3.0.linux-amd64/ elasticsearch_exporter

cd elasticsearch_exporter

运行elasticsearch_exporter:

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://192.168.11.139:9200 &

查看输出日志:

vim nohup.out

看指标信息:

web 访问

http://192.168.11.139:9114/metrics

启动好后来prometheus添加配置

  - job_name: "es"

    static_configs:

      - targets: ["192.168.11.139:9114"]

http://192.168.11.141:9090/targets    看一下状态 UP则配置成功

配置完成后在Grafana官网中下载es的监控模板  Dashboards | Grafana Labs  下载es的模板

下载好以后来到Grafana-web页面    192.168.221.25:3000 

 

 

配置完成!!! 

 

 

如果需要配合alertmanager然后配置告警规则即可

# ES服务挂掉时触发告警

  - alert: ES 状态

    expr: elasticsearch_cluster_health_up == 0

    for: 10s

    labels:

      severity: warning

    annotations:

      summary: " {{ $labels.instance }} ES服务"

      description: " {{ $labels.instance }} ES服务不可用,请检查 "

  - alert: ES节点健康状态

    expr: elasticsearch_cluster_health_status{color="red"} == 1

    for: 10s

    labels:

      severity: warning

    annotations:

      summary: "{{ $labels.instance }} ES节点健康状态"

      description: "{{ $labels.instance }} ES节点健康状态为红色,请检查"

systemctl restart prometheus

配置完成后停掉ES服务看下告警是否正常

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值