Skip to content

Latest commit

 

History

History

grafana

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Grafana - 一个监控仪表系统,定制属于你的仪表盘

当前版本为 v7.3.4,源镜像最新版本

Hello Grafana!


TL;DR;

The quickest way to get started is using docker-compose.

mkdir -p /usr/local/dockerized/grafana ; cd $_
git svn clone https://github.com/y0ngb1n/dockerized/trunk/grafana .
docker-compose up -d

通过以下方式访问 Grafana 的管理面板:

  • http://<IP_ADDRESS_OF_YOUR_SERVER>:8848

反向代理配置

Nginx 配置如下

# https://grafana.com/tutorials/run-grafana-behind-a-proxy/
location /grafana/ {
  proxy_pass http://127.0.0.1:8848/;
}

参考资料