简体   繁体   English

Zap 记录器将 UUID 添加到 golang 中的所有日志

[英]Zap logger add UUID to all logs in golang

I have this method used in a lambda:我在 lambda 中使用了这种方法:

import (
    "os"

    "go.uber.org/zap"
    "go.uber.org/zap/zapcore"
)

func InitLogger() *zap.Logger {
    config := zap.NewProductionEncoderConfig()
    config.EncodeTime = zapcore.RFC3339TimeEncoder
    consoleEncoder := zapcore.NewJSONEncoder(config)
    core := zapcore.NewTee(zapcore.NewCore(consoleEncoder, zapcore.AddSync(os.Stdout), zapcore.InfoLevel))
    return zap.New(core).With()
}

And in my lambda Handler i have:在我的 lambda 处理程序中,我有:

var (
    log *zap.Logger
)

func init() {
    log = u.InitLogger()
}

func handler(r events.APIGatewayProxyRequest) (*events.APIGatewayProxyResponse, error) {

    out, err := exec.Command("uuidgen").Output()
    uuid := strings.ReplaceAll(string(out), "\n", "")
    if err != nil {
        log.Error(err.Error())
    }

    log.Info("PRINT_1", zap.Any("uuid", uuid), zap.Any("Request", r.Body))
}

I have a question, is possible add the UUID to all logs without adding one by one?, because in each log that I need print something, I need add zap.Any("uuid", uuid)我有一个问题,是否可以将 UUID 添加到所有日志而不是一个一个添加?,因为在我需要打印的每个日志中,我需要添加zap.Any("uuid", uuid)

The problem is that I need pass as parameter to all methods the UUID to print it in the log info, or error.问题是我需要将 UUID 作为参数传递给所有方法以在日志信息或错误中打印它。

You will have to slightly re-arrange your code since you're only creating the UUID in the handler, which implies it's request-specific whilst the logger is global...您将不得不稍微重新安排您的代码,因为您只是在处理程序中创建 UUID,这意味着它是特定于请求的,而记录器是全局的......

But the gist, specific to the library, is that you've got to create a child logger (which you are, in fact, already doing: you just need to pass the fields there).但是,特定于库的要点是,您必须创建一个子记录器(事实上,您已经在做:您只需要将字段传递到那里)。 Any subsequent log writes to the child logger will include those fields.任何后续写入子记录器的日志都将包含这些字段。

For example:例如:

func main() {
    logger := InitLogger(zap.String("foo", "bar"))
    logger.Info("First message with our `foo` key")
    logger.Info("Second message with our `foo` key")
}

func InitLogger(fields ...zap.Field) *zap.Logger {
    config := zap.NewProductionEncoderConfig()
    config.EncodeTime = zapcore.RFC3339TimeEncoder
    consoleEncoder := zapcore.NewJSONEncoder(config)
    core := zapcore.NewTee(zapcore.NewCore(consoleEncoder, zapcore.AddSync(os.Stdout), zapcore.InfoLevel))
    return zap.New(core).With(fields...)
}

Output: Output:

{"level":"info","ts":"2022-11-24T18:30:45+01:00","msg":"First message with our `foo` key","foo":"bar"}
{"level":"info","ts":"2022-11-24T18:30:45+01:00","msg":"Second message with our `foo` key","foo":"bar"}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM