美文网首页
Prometheus监控服务器节点,并显示在Grafana上

Prometheus监控服务器节点,并显示在Grafana上

作者: 二班老许 | 来源:发表于2022-04-27 16:51 被阅读0次
    1. 在需要监控的节点上安装运行node-exporter
    docker run --name prometheus-node-exporter \
        -p 0.0.0.0:9100:9100 \
        --restart always \
        -itd bitnami/node-exporter:latest
    
    2. 修改Prometheus配置文件

    位置:/etc/prometheus/prometheus.yml
    在scrape_configs:下添加

    # 服务器节点监控
    - job_name: '服务器节点监控'
      file_sd_configs:
      - files: ['/etc/prometheus/conf.d/physical_node/*.yml']
        refresh_interval: 10s
    

    添加要监控的目标
    位置:/etc/prometheus/conf.d/physical_node/gylab_physical.yml

    - targets: ['192.168.7.254:9100']
      labels:
        name: '办公室小服务器'
        group: '华云'
    
    - targets: ['192.168.10.2:9100']
      labels:
        name: '实验室01'
        group: '实验室'
    
    3. Prometheus重载配置
    curl -X POST http://192.168.7.254:9090/-/reload
    
    4. General添加模板

    找模板的地址:https://grafana.com/grafana/dashboards/
    我用的是这个模板:https://grafana.com/grafana/dashboards/8919

    image.png

    复制这个模板id 8919,之后导入模板,再点Load

    image.png
    image.png

    保存后就会有效果

    image.png

    相关文章

      网友评论

          本文标题:Prometheus监控服务器节点,并显示在Grafana上

          本文链接:https://www.haomeiwen.com/subject/drrlyrtx.html