美文网首页Linux系统监控
Prometheus监控系统

Prometheus监控系统

作者: zoushiwen | 来源:发表于2019-02-15 14:44 被阅读174次

    prometheus 安装

      wget https://github.com/prometheus/prometheus/releases/download/v2.7.1/prometheus-2.7.1.linux-amd64.tar.gz
    

    prometheus 配置

    prometheus.yml
    
    scrape_configs:
      - job_name: prometheus
        static_configs:
          - targets: ['localhost:9090']
            labels:
              instance: prometheus
    
      - job_name: node
        static_configs:
          - targets: ['localhost:9100']
            labels:
              instance: node1
    

    相关文章

      网友评论

        本文标题:Prometheus监控系统

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