欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

open-falcon graph 部署

程序员文章站 2022-03-04 14:57:03
...

目的

搭建 graph 服务

依赖

mysql db

编译

版本修改

modules/graph/g/g.go

const (
        VERSION      = "20200818"
)

编译

# make graph
go build -o bin/graph/falcon-graph ./modules/graph

graph 服务器搭建

创建目录

mkdir /apps/svr/falcon-plus/graph/{bin,config,logs} -p

配置文件
/apps/svr/falcon-plus/graph/config/cfg.json

{
    "debug": false,
    "http": {
        "enabled": true,
        "listen": "0.0.0.0:6071"
    },
    "rpc": {
        "enabled": true,
        "listen": "0.0.0.0:6070"
    },
    "rrd": {
        "storage": "/data/graph/6070"
    },
    "db": {
        "dsn": "falcon:[email protected](ns-yun-020021.133.com:3307)/graph?loc=Local&parseTime=true",
        "maxIdle": 4
    },