Prometheus-pushgateway
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Prometheus-pushgateway相关的知识,希望对你有一定的参考价值。
参考技术A 介绍Pushgateway作为独立的服务,位于 被采集监控指标的应用程序 和 Prometheus 之间,应用程序主动推送指标到Pushgateway,然后Pushgateway作为target被prometheus抓取这些指标
使用场景
临时/短作业
批处理作业
应用程序与Prometheus之间有网络隔离
缺点
不能监控到 被采集监控指标应用程序 的健康状态(这个状态是通过up指标暴露的)
存在单点故障问题,如果Pushgateway从许多不同的来源收集指标时宕机,用户将失去对这些来源的监控
Pushgateway不会自动删除推送给它的任何指标数据,因此,必须使用Pushgateway的API从推送网关中删除过期的指标
prometheus-pushgateway部署
https://www.cnblogs.com/xiaobaozi-95/p/10684524.html
https://www.cnblogs.com/xiao987334176/p/9933963.html
容器部署
docker run -d -p 9091:9091 -v /etc/localtime:/etc/localtime:ro -v /etc/timezone:/etc/timezone:ro -v /etc/timezone:/etc/timezone:ro prom/pushgateway
在prometheus.yml中添加pushgateway的job信息,然后重启prometheus容器。
- job_name: pushgateway static_configs: - targets: [‘192.168.18.19:9091‘] labels: instance: pushgateway
Python Client
https://github.com/prometheus/client_python
以上是关于Prometheus-pushgateway的主要内容,如果未能解决你的问题,请参考以下文章