-
Notifications
You must be signed in to change notification settings - Fork 22
/
config.go
89 lines (71 loc) · 2.09 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package zap
import (
"fmt"
"os"
"path/filepath"
"time"
vgfs "code.vegaprotocol.io/vega/libs/fs"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
func DefaultConfig() zap.Config {
return zap.Config{
Level: zap.NewAtomicLevelAt(zapcore.InfoLevel),
Encoding: "json",
EncoderConfig: zapcore.EncoderConfig{
MessageKey: "message",
LevelKey: "level",
TimeKey: "@timestamp",
NameKey: "logger",
CallerKey: "caller",
StacktraceKey: "stacktrace",
LineEnding: "\n",
EncodeLevel: zapcore.LowercaseLevelEncoder,
EncodeTime: zapcore.ISO8601TimeEncoder,
EncodeDuration: zapcore.StringDurationEncoder,
EncodeCaller: zapcore.ShortCallerEncoder,
EncodeName: zapcore.FullNameEncoder,
},
OutputPaths: []string{"stdout"},
ErrorOutputPaths: []string{"stderr"},
DisableStacktrace: true,
}
}
func WithLevel(cfg zap.Config, level string) zap.Config {
parsedLevel, err := parseLevel(level)
if err != nil {
parsedLevel = zap.NewAtomicLevelAt(zapcore.InfoLevel)
}
cfg.Level = parsedLevel
return cfg
}
func WithFileOutputForDedicatedProcess(cfg zap.Config, dirPath string) zap.Config {
date := time.Now().UTC().Format("2006-01-02-15-04-05")
pid := os.Getpid()
logFileName := fmt.Sprintf("%s-%d.log", date, pid)
logFilePath := filepath.Join(dirPath, logFileName)
return WithFileOutput(cfg, logFilePath)
}
func WithFileOutput(cfg zap.Config, filePath string) zap.Config {
zapLogPath := toOSFilePath(filePath)
fileDir, _ := filepath.Split(filePath)
_ = vgfs.EnsureDir(fileDir)
cfg.OutputPaths = []string{zapLogPath}
cfg.ErrorOutputPaths = []string{zapLogPath}
return cfg
}
func WithStandardOutput(cfg zap.Config) zap.Config {
cfg.OutputPaths = []string{"stdout"}
cfg.ErrorOutputPaths = []string{"stderr"}
return cfg
}
func WithJSONFormat(cfg zap.Config) zap.Config {
cfg.EncoderConfig.EncodeLevel = zapcore.LowercaseLevelEncoder
cfg.Encoding = "json"
return cfg
}
func WithConsoleFormat(cfg zap.Config) zap.Config {
cfg.EncoderConfig.EncodeLevel = zapcore.CapitalColorLevelEncoder
cfg.Encoding = "console"
return cfg
}