我在'grafana'仪表板v2.0上有一个图表。
我想使用HTTP get(来自python)
从此图中获取值我试过API Documentation但是很差劲。什么都没有从图表中获取值
我只能在文档中找到如何使用提供的令牌获取仪表板(GET /api/dashboards/db/:slug
)。
我怎样才能获得图表值?
(就像我的指标类似于queue.prod.high.total_queues
)
由于
答案 0 :(得分:1)
您不会获得查询Grafana而是Graphite的指标值。在python中,您可以使用requests
库以及Graphite URL API和format
参数。
例如:
import requests
response = requests.get('http://your.graphite.host.com/render?target=queue.prod.high.total_queues&format=json')
data = response.json()