Prometheus
文章平均质量分 56
sunican
这个作者很懒,什么都没留下…
展开
-
Prometheus监控搭建(4)PrometheusAlert 配置
下载地址安装简要流程梳理# 安装过程简要说明git clone https://github.com/feiyu563/PrometheusAlert.gitmv PrometheusAlert /usr/local/chmod 755 /usr/local/PrometheusAlert/example/linux/PrometheusAlertcat > /usr/lib/systemd/system/PrometheusAlert.service << EOF[原创 2021-02-05 18:22:30 · 1206 阅读 · 0 评论 -
Prometheus监控搭建(2)prometheus搭建
环境:centos7.2nginx的配置比较常见,一般安装即可,这里不再多说。唯一说的是因为基于nginx做权限认证,需要创建一个密钥对。yum -y install httpd-toolshtpasswd -bc /usr/local/nginx/prometheus.passwd 用户名 密码这里是prometheus官网的下载地址,大家可以根据自己的需要去下载。tar zxf prometheus-2.20.1.linux-amd64.tar.gzmv prometheus-.原创 2021-02-04 17:47:09 · 370 阅读 · 0 评论 -
Prometheus监控搭建(1)流程梳理
prometheus 搭建的过程比较长,涉及到的东西也比较多,写这篇文章只是个人梳理用,后续有时间完善。可能都比较流水账。相关软件列表 软件名称 作用 node_exporter 收集主机的基本性能监控指标 blackbox_exporter 收集http,https,tcp等监控指标 redis_exporter 收集redis相关的监控指标 mysqld_exporter 收集mysql相关的监控指标 pushgateway 向prometh原创 2021-02-04 17:33:32 · 274 阅读 · 0 评论 -
Prometheus监控搭建(5)pushgateway安装
下载地址tar zxf pushgateway-1.2.0.linux-amd64.tar.gzmv pushgateway-1.2.0.linux-amd64 /usr/local/pushgateway# 编写centos7 启停控制脚本cat > /usr/lib/systemd/system/pushgateway.service << EOF[Unit]Description=pushgatewayAfter=network.target [Servic.原创 2021-02-05 17:08:17 · 1217 阅读 · 0 评论