赞
踩
#docker pull prom/pushgateway
#docker run -d -p 9091:9091 prom/pushgateway
#访问http://172.17.0.41:9091
...
- job_name: pushgateway
static_configs:
- targets: ['172.17.0.41:9091']
labels:
instance: pushgateway
...
Push 数据到 PushGateway 中,可以通过其提供的 API 标准接口来添加,默认 URL 地址为:http://<ip>:9091/metrics/job/<JOBNAME>{/<LABEL_NAME>/<LABEL_VALUE>},
其中 是必填项,为 job 标签值,后边可以跟任意数量的标签对,一般我们会添加一个 instance/<INSTANCE_NAME> 实例名称标签ÿ
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。