You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 16 Next »
从v2版本开始,glog组件将ctx上下文变量作为日志打印的必需参数。
v2
glog
ctx
CtxKeys
# 日志组件配置 [logger] Path = "/var/log/my-app" Level = "all" Stdout = false CtxKeys = ["RequestId"]
其中CtxKeys用于配置需要从context.Context接口对象中读取并输出的键名。
context.Context
在输出日志的时候,需要通过Ctx链式操作方法指定输出的context.Context接口对象,例如:
Ctx
ctx := context.WithValue(context.Background(), "RequestId", "123456789") g.Log().Error(ctx,"runtime error") // May Output: // 2020-06-08 20:17:03.630 [ERRO] {123456789} runtime error // Stack: // ...
Handler
glog组件支持OpenTelemetry标准的链路跟踪特性,该支持是内置的,无需开发者做任何设置,具体请参考章节:链路跟踪(更新中)
OpenTelemetry