如何从grafana V 2.0中的仪表板中的图表中获取值

时间:2015-12-10 14:26:25

标签: python grafana

我在'grafana'仪表板v2.0上有一个图表。

我想使用HTTP get(来自python)

从此图中获取值

我试过API Documentation但是很差劲。什么都没有从图表中获取值

我只能在文档中找到如何使用提供的令牌获取仪表板(GET /api/dashboards/db/:slug)。

我怎样才能获得图表值?

(就像我的指标类似于queue.prod.high.total_queues

由于

1 个答案:

答案 0 :(得分:1)

您不会获得查询Grafana而是Graphite的指标值。在python中,您可以使用requests库以及Graphite URL APIformat参数。

例如:

import requests
response = requests.get('http://your.graphite.host.com/render?target=queue.prod.high.total_queues&format=json')
data = response.json()