설명 없음

jaryhe 728c9e7415 update 7 달 전
apis 728c9e7415 update 7 달 전
common.in 43701474da map[string]string to map[string]interface 7 달 전
conf be668970f8 update 1 년 전
consts a23ed1502e add zr vin 7 달 전
docker bce5e5b4d8 init 1 년 전
errors beccf982fa update 1 년 전
impl 728c9e7415 update 7 달 전
rpc_apis e0a3d9d24b update 1 년 전
sh bce5e5b4d8 init 1 년 전
tests bce5e5b4d8 init 1 년 전
thirdparty 43701474da map[string]string to map[string]interface 7 달 전
utils 728c9e7415 update 7 달 전
CHANGELOG.md bce5e5b4d8 init 1 년 전
Dockerfile.in bce5e5b4d8 init 1 년 전
Makefile bce5e5b4d8 init 1 년 전
README.md bce5e5b4d8 init 1 년 전
VERSION bce5e5b4d8 init 1 년 전
app.spec.in bce5e5b4d8 init 1 년 전
confbuild.sh bce5e5b4d8 init 1 년 전
go.mod c862d20b8a update 1 년 전
go.sum bce5e5b4d8 init 1 년 전
imagebuild.sh bce5e5b4d8 init 1 년 전
main.go 10d7027f5c cdbd store to mysql 1 년 전
rpmbuild.sh bce5e5b4d8 init 1 년 전

README.md

msdemo

本工程是微服务的demo。

编译依赖

必要操作

# 取出共有第三方包工程,其中 /path/to 需要自己指定
# *** 如果其它工程做了软链接,则不需重复以下三步 ***
mkdir -P /path/to/repository/commons
cd /path/to/repository/commons
git clone http://gitlab.chejinjia.cn/repository/commons/golangpkgs.git

# 建立业务工程,并关联golangpkgs
mkdir -p /path/to/repository/projects/src
export GOPATH=/path/to/repository/projects
cd /path/to/repository/projects/src
ln -s /path/to/repository/commons/golangpkgs/vendor/ . # 如果其它工程做了软链接,则忽略此行
git clone git@gitlab.chejinjia.cn:repository/your_project.git # 本工程的链接
go build
...

关于日志

日志使用步骤

1. 在要打印日志的包目录下,拷贝一份logger.go,并修改logger所属包名:

./impl/arith
└── logger.go
./common.in/task
└── logger.go

2. 在main.go中添加如下代码:

// 通用logger
commonLogger := logger.InitLogger(runmode, fmt.Sprintf("logs/%s.log", appname),
    maxSize, maxBackups, maxAge, disableStacktrace)
// 单独设置
accessLogger := logger.NewInfoLogger(runmode, fmt.Sprintf("logs/%s-access.log", appname),
    maxSize, maxBackups, maxAge)

// 设置需要使用logger的地方
// common日志
arith.SetLogger(commonLogger)
// access日志
task.SetLogger(accessLogger)

错误日志规范

l.Error("业务",
        zap.String("操作", "操作名称"),
        zap.String("参数或字段", "参数列表以及值"),
        zap.String("error", err.Error()))

mysql 错误日志

l.Error("mysql",
    zap.String("sql", "SELECT from c_device"), // 操作+表名
    zap.String("fields", utils.MarshalJsonString(field1, value1, field2, value2)),
    zap.String("error", err.Error()))

redis 错误日志

l.Error("redis",
    zap.String("cmd", "SETEX"), // 命令
    zap.String("args", utils.MarshalJsonString(key, seconds, value)),
    zap.String("error", err.Error()))

调用rpc 错误日志

l.Error("rpc",
    zap.String("call", "Arith.Add"), // 注册名.方法名
    zap.String("args", utils.MarshalJsonString(req)),
    zap.String("error", err.Error()))

内部函数调用 错误日志

l.Error("func",
    zap.String("call", "Add"), // 函数名
    zap.String("args", utils.MarshalJsonString(arg1, arg2, arg3)),
    zap.String("error", err.Error()))