Prometheus+Grafana+elasticsearch_exporter 监控 Elasticsearch
Prometheus Grafana DevOps 大约 1411 字下载 elasticsearch_exporter
https://github.com/prometheus/elasticsearch_exporter/releases
后台启动
nohup /root/exporter/elasticsearch_exporter-1.3.0/elasticsearch_exporter > elasticsearch_exporter.out 2>&1 &
设置开机启动
编辑
vim /etc/systemd/system/elasticsearch_exporter.service
内容:ExecStart
需要修改为elasticsearch_exporter
二进制文件的绝对路径
[Unit]
Description=elasticsearch_exporter
Documentation=https://github.com/prometheus-community/elasticsearch_exporter
After=network.target
[Service]
Type=simple
User=root
ExecStart= /root/exporter/elasticsearch_exporter-1.3.0/elasticsearch_exporter
Restart=on-failure
[Install]
WantedBy=multi-user.target
设为开机启动
sudo systemctl enable elasticsearch_exporter.service
启动elasticsearch_exporter
sudo systemctl start elasticsearch_exporter.service
elasticsearch_exporter 默认端口
修改 Prometheus 配置
scrape_configs
下新增job_name
为elasticsearch
(名称随意)
- job_name: 'elasticsearch'
static_configs:
- targets: ['192.168.0.100:9114']
完整的scrape_configs
如下
scrape_configs:
- job_name: "prometheus"
static_configs:
- targets: ["localhost:9090"]
- job_name: 'elasticsearch'
static_configs:
- targets: ['192.168.0.100:9114']
重启 Prometheus
重启后可查看elasticsearch_exporter
是否上线。
Grafana Dashboard
ElasticSearch: https://grafana.com/grafana/dashboards/6483
开源地址
https://github.com/prometheus-community/elasticsearch_exporter
阅读 919 · 发布于 2022-02-28
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb扫描下方二维码关注公众号和小程序↓↓↓

昵称:
随便看看
换一批
-
Android Gradle 去除重复依赖阅读 3044
-
Vue watch 监听器阅读 86
-
Vue mavonEditor 获取 HTML 代码阅读 1509
-
Android 有权查看使用权限的应用阅读 5473
-
Docker 部署 Redis阅读 593
-
算法:递归-八皇后问题阅读 1043
-
Arthas 获取Spring Context 动态修改 Spring Boot 配置文件中的值阅读 4505
-
Docker 搭建私有仓库 Registry阅读 711
-
Windows 下使用 Wireshark 抓取 HTTP2 加密数据包阅读 3275
-
Spring Boot 2.3.0 不再包含 Validation阅读 1794