参考文档
- https://www.cnblogs.com/caoweixiong/p/12156590.html
- https://github.com/prometheus-community/elasticsearch_exporter/releases
node_exporter
1 | mkdir /sdecloud && cd /sdecloud |
验证:
http://10.193.10.51:9100/metrics
elasticsearch_exporter
只监控主节点:
1 | nohup ./elasticsearch_exporter --es.uri http://10.193.10.51:9200 & |
验证:
http://10.193.10.51:9114/metrics
Prometheus
vi prometheus.yml
1 | - job_name: 'ES集群' |
vi prometheus.yml
1 | - job_name: 'ES监控' |
启动:
1 | nohup /sdecloud/prometheus/prometheus --web.enable-admin-api --web.enable-lifecycle --storage.tsdb.retention=190d & |