zoukankan      html  css  js  c++  java
  • 添加对docker的监控

    一、环境:已安装docker机器ip:192.168.0.202

    二、原理

      使用docker的metrics-add参数,提供对docker运行参数的访问条件。

    三、修改/etc/docker/daemon.json

    [root@DL ~]# vi /etc/docker/daemon.json
    {
            "registry-mirrors": ["http://hub-mirror.c.163.com"],
            "metrics-addr": "0.0.0.0:9323",     #此处端口号为自定义
            "experimental": true
    }

    上述红字为新增内容

    四、重启docker服务

    [root@DL ~]# systemctl stop docker

    [root@DL ~]# systemctl start docker

    五、测试:

    [root@DL ~]# curl 192.168.0.202:9323/metrics

    能够看到键值对列表即说明配置正确。

    六、prometheus服务器添加对docker的监控配置

    [root@ELK prometheus]# vi prometheus.yml

    ...
      - job_name: 'node-dell5460'                                                                              


        # metrics_path defaults to '/metrics'                                                                  
        # scheme defaults to 'http'.                                                                           


        static_configs:                                                                                        
        - targets: ['192.168.0.202:9100','192.168.0.202:9323']

    重启prometheus服务后即可访问docker监控参数。

  • 相关阅读:
    2. 逻辑运算
    1. 条件
    6. 可变不可变类型
    5. 基本运算符
    4. 与用户交互
    12 .命名的EIGRP和EIGRP v6
    11. EIGRP路由SIA
    Redis 快速入门 -- Redis 快速入门(2)
    Redis 快速入门 -- Redis教程(1)
    Redis 百度百科
  • 原文地址:https://www.cnblogs.com/sfccl/p/12941854.html
Copyright © 2011-2022 走看看