项目开发记录 August 19, 2018

linux环境下编译安装grafana并实现汉化

Words count 2.3k Reading time 2 mins.

前言:目前实现汉化的方案很笨拙,需要对源码里的模板文件,以及js里用的显示数据进行一一汉化。所以在这里记录一下汉化以及编译安装的过程。

  • go语言环境

  • node环境

  • git

    安装go语言环境

    利用yum...

Read article

项目开发记录 August 19, 2018

linux环境下编译安装prometheus

Words count 897 Reading time 1 mins.

yum insatll go
export GOPATH=`pwd`
cd $GOPATH/src/github.com/prometheus
git clone https://github.com/prometheus/prometheus.git
cd prometheus
make assets
make build

复制prometheus.yml到目录下,然后运行

./prometheus

promethus的前端页面在/root/src/github.com/prometheus...

Read article
0%