我希望使用Pushgateway将多标记的指标推入Prometheus。文档提供了一个curl示例,但我需要通过Python发送它。此外,我还想在指标中嵌入多个标签。
答案 0 :(得分:4)
一个:安装客户端:
pip install prometheus_client
二:将以下内容粘贴到Python解释器中:
from prometheus_client import CollectorRegistry, Gauge, push_to_gateway
registry = CollectorRegistry()
g = Gauge('job_last_success_unixtime', 'Last time a batch job successfully finished', registry=registry)
g.set_to_current_time()
push_to_gateway('localhost:9091', job='batchA', registry=registry)
答案 1 :(得分:2)
这就是我最终做的事情 - 需要一段时间才能做到正确。虽然理想情况下我会使用专为此目的而设计的Prometheus python客户端,但在某些情况下它似乎不支持多个标签,而且文档几乎不存在 - 所以我选择了自制的解决方案。
下面的代码使用gevent并支持多个(逗号分隔的)pushgateway网址(例如“pushgateway1.my.com:9092,pushgateway2.my.com:9092”)。
import gevent
import requests
def _submit_wrapper(urls, job_name, metric_name, metric_value, dimensions):
dim = ''
headers = {'X-Requested-With': 'Python requests', 'Content-type': 'text/xml'}
for key, value in dimensions.iteritems():
dim += '/%s/%s' % (key, value)
for url in urls:
requests.post('http://%s/metrics/job/%s%s' % (url, job_name, dim),
data='%s %s\n' % (metric_name, metric_value), headers=headers)
def submit_metrics(job_name, metric_name, metric_value, dimensions={}):
from ..app import config
cfg = config.init()
urls = cfg['PUSHGATEWAY_URLS'].split(',')
gevent.spawn(_submit_wrapper, urls, job_name, metric_name, metric_value, dimensions)
答案 2 :(得分:0)