我想使用http get(来自python)从这个图中获取一个值
我试过API Documentation,但很差.什么都没有从图表中获取值
我只能在文档中找到如何使用提供的令牌获取仪表板(GET / API / dashboards / db /:slug).
我怎样才能获得图表值?
(就像我的指标是像queue.prod.high.total_queues一样)
谢谢
解决方法 您没有获得查询Grafana而是Graphite的度量值.在python中,您可以使用请求库以及 Graphite URL API和format
参数. 例如:
import requestsresponse = requests.get('http://your.graphite.host.com/render?target=queue.prod.high.total_queues&format=Json')data = response.Json()总结
以上是内存溢出为你收集整理的python – 如何从grafana V 2.0中的仪表板中的图形中获取值全部内容,希望文章能够帮你解决python – 如何从grafana V 2.0中的仪表板中的图形中获取值所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)