unable to configure grafana with graphite

后端 未结 7 867
孤独总比滥情好
孤独总比滥情好 2021-02-10 11:44

I am using Nginx to serve both graphite and grafana (they are all running on the same server - not my desktop). I am able to access graphite via Nginx. However, grafana cannot

7条回答
  •  后悔当初
    2021-02-10 12:04

    Try to access graphite through nginx (same origin). Just add new location

    location /render {
                    proxy_pass      http://xxx.xxx.xxx.xxx:8080/render;
    }
    

    then in your grafana config file change graphite url

提交回复
热议问题