Ubuntu 20.04 prometheus prometheus-process-exporter

发布时间:2023年12月18日

prometheus-process-exporter

监控系统架构方案
https://blog.csdn.net/weixin_45801289/article/details/126922395

sudo apt install prometheus-process-exporter
prometheus-process-exporter_0.4.0+ds-1_amd64.deb
service prometheus-process-exporter status

netstat -anplut|grep alert
systemctl daemon-reload
systemctl start alertmanager
systemctl enable alertmanager
systemctl status alertmanager
systemctl restart alertmanager

Ubuntu 20.04 部署Prmoetheus+grafana+mysql+mysqld_exporter+node_exporter
https://www.cnblogs.com/yangzp/p/16281547.html

输入导入的模板id 249,数据源选择Prometheus,点击import导入。
展示process exporter监控到信息

vi /etc/default/prometheus-process-exporter

ARGS="-web.listen-address :9256"

curl http://localhost:9256/metrics > ccc
http://192.168.99.40:9256/metrics

sudo vi /etc/prometheus/prometheus.yml

  - job_name: 'linux-node-process-1'
    static_configs:
              - targets: ['192.168.99.40:9256']

sudo systemctl restart prometheus

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

文章来源:https://blog.csdn.net/wowocpp/article/details/135064738
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。