一 . 问题:
在用docker部署Grafana 来实现仪表盘的展示,使用到比较多的就是使用JAON API插件调用本地部署的API,比如访问localhost下的 /test_data 接口,一般我们使用的是http://localhost:8080/test_data,
但是在访问的时候会报错,bad gateway(502)
二. 现象:
在浏览器中调用 ,正常返回接口
但是在Grafana 使用JSON API插件配置,对应url 也为http://localhost:8080/test_data 却一直显示 bad gateway(502) 报错
三. 分析原因:
部署是用docker部署上去,但是服务是在本地宿主机上启动,所以实际上是需要在docker 访问宿主机的localhost
四 . 解决办法
在使用localhost的地方替换host.docker.internal
对于mac和windows,可以使用host.docker.internal替换127.0.0.1或者localhost, 如 http://host.docker.internal:8080