当前位置:   article > 正文

智能运维-Pushgateway推送监控指标给Prometheus的配置_pushgateway推送cpu监控信息

pushgateway推送cpu监控信息

找一个Short-lived Jobs的示例,配置其向Pushgateway推送监控指标?

1)安装pushgateway
#docker pull prom/pushgateway
#docker run -d   -p 9091:9091   prom/pushgateway

#访问http://172.17.0.41:9091
  • 1
  • 2
  • 3
  • 4
2) 在prometheus配置文件中添加pushgateway
  ...
  - job_name: pushgateway
    static_configs:
      - targets: ['172.17.0.41:9091']
        labels:
          instance: pushgateway
  ...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
3)API的方式Push数据到pushgateway
	Push 数据到 PushGateway 中,可以通过其提供的 API 标准接口来添加,默认 URL 地址为:http://<ip>:9091/metrics/job/<JOBNAME>{/<LABEL_NAME>/<LABEL_VALUE>},
  • 1

​ 其中 是必填项,为 job 标签值,后边可以跟任意数量的标签对,一般我们会添加一个 instance/<INSTANCE_NAME> 实例名称标签ÿ

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/883514
推荐阅读
相关标签
  

闽ICP备14008679号