-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgin.go
392 lines (367 loc) · 11 KB
/
gin.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
package logit
import (
"bytes"
"fmt"
"io/ioutil"
"net/http"
"path"
"regexp"
"time"
"github.com/gin-gonic/gin"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
const (
// 默认 logger name
defaultGinLoggerName = "access"
// 默认慢请求时间 3s
defaultGinSlowThreshold = time.Second * 3
)
//
// GetGinTraceIDFromHeader
// @Description: 从 gin 的 request header 中获取 key 为 TraceIDKeyName 的值作为 traceid
// @param c
// @return string
//
func GetGinTraceIDFromHeader(c *gin.Context) string {
return c.Request.Header.Get(string(TraceIDKeyName))
}
//
// GetGinTraceIDFromQueryString
// @Description: 从 gin 的 querystring 中获取 key 为 TraceIDKeyName 的值作为 traceid
// @param c
// @return string
//
func GetGinTraceIDFromQueryString(c *gin.Context) string {
return c.Query(string(TraceIDKeyName))
}
//
// GetGinTraceIDFromPostForm
// @Description: 从 gin 的 post form 中获取 key 为 TraceIDKeyName 的值作为 traceid
// @param c
// @return string
//
func GetGinTraceIDFromPostForm(c *gin.Context) string {
return c.PostForm(string(TraceIDKeyName))
}
// GinLogExtends gin 日志中间件记录的扩展
type GinLogExtends struct {
// 请求处理耗时 (秒)
Latency float64 `json:"latency_seconds"`
HandleName string `json:"handle_name"`
}
// GinLoggerConfig GinLogger 支持的配置项字段定义
type GinLoggerConfig struct {
Name string
// Optional. Default value is logit.defaultGinLogFormatter
Formatter func(*gin.Context, GinLogExtends) string
// SkipPaths is a url path array which logs are not written.
// Optional.
SkipPaths []string
// SkipPathRegexps skip path by regexp
SkipPathRegexps []string
// TraceIDFunc 获取或生成 trace id 的函数
// Optional.
TraceIDFunc func(*gin.Context) string
// 是否使用详细模式打印日志,记录更多字段信息
// Optional.
EnableDetails bool
// 以下选项开启后对性能有影响,适用于接口调试,慎用。
// 是否打印 context keys
// Optional.
EnableContextKeys bool
// 是否打印请求头信息
// Optional.
EnableRequestHeader bool
// 是否打印请求form信息
// Optional.
EnableRequestForm bool
// 是否打印请求体信息
// Optional.
EnableRequestBody bool
// 是否打印响应体信息
// Optional.
EnableResponseBody bool
// 慢请求时间阈值 请求处理时间超过该值则使用 Warn 级别打印日志
SlowThreshold time.Duration
// 日志输出路径,默认 []string{"console"}
// Optional.
OutputPaths []string
// 日志初始字段
// Optional.
InitialFields map[string]interface{}
// 是否关闭打印 caller,默认 false
// Optional.
DisableCaller bool
// 是否关闭打印 stack strace,默认 false
// Optional.
DisableStacktrace bool
// 配置日志字段 key 的名称
// Optional.
EncoderConfig *zapcore.EncoderConfig
}
//
// GinLogger
// @Description: 以默认配置生成 gin 的 Logger 中间件
// @return gin.HandlerFunc
//
func GinLogger() gin.HandlerFunc {
return GinLoggerWithConfig(GinLoggerConfig{})
}
//
// defaultGinLogFormatter
// @Description: 默认访问日志中 msg 字段的输出格式
// @param c
// @param m
// @return string
//
func defaultGinLogFormatter(c *gin.Context, ext GinLogExtends) string {
msg := fmt.Sprintf("%s|%s|%s%s|%d|%f",
c.ClientIP(),
c.Request.Method,
c.Request.Host,
c.Request.RequestURI,
c.Writer.Status(),
ext.Latency,
)
return msg
}
//
// defaultGinTraceIDFunc
// @Description: 默认从 context 中获取 traceID 的方法
// @param c
// @return traceID
//
func defaultGinTraceIDFunc(c *gin.Context) (traceID string) {
traceID = GetGinTraceIDFromHeader(c)
if traceID != "" {
return
}
traceID = GetGinTraceIDFromPostForm(c)
if traceID != "" {
return
}
traceID = GetGinTraceIDFromQueryString(c)
if traceID != "" {
return
}
traceID = CtxTraceID(c)
return
}
//
// NewGinLogger
// @Description: alias for GinLoggerWithConfig
// @param conf
// @return gin.HandlerFunc
//
func NewGinLogger(conf GinLoggerConfig) gin.HandlerFunc {
return GinLoggerWithConfig(conf)
}
//
// GinLoggerWithConfig
// @Description: 根据配置信息生成 gin 的 Logger 中间件
// 中间件会记录访问信息,根据状态码确定日志级别, 500 以上为 Error , 400-500 默认为 Warn , 400 以下默认为 Info
// api 请求进来的 context 的函数无需在其中打印 err ,使用 c.Error(err)会在请求完成时自动打印 error
// context 中有 error 则日志忽略返回码始终使用 error 级别
// @param conf
// @return gin.HandlerFunc
//
func GinLoggerWithConfig(conf GinLoggerConfig) gin.HandlerFunc {
formatter := conf.Formatter
if formatter == nil {
formatter = defaultGinLogFormatter
}
getTraceID := conf.TraceIDFunc
if getTraceID == nil {
getTraceID = defaultGinTraceIDFunc
}
var skipRegexps []*regexp.Regexp
for _, p := range conf.SkipPathRegexps {
if r, err := regexp.Compile(p); err != nil {
panic("skip path regexps compile " + p + " error:" + err.Error())
} else {
skipRegexps = append(skipRegexps, r)
}
}
if conf.SlowThreshold.Seconds() <= 0 {
conf.SlowThreshold = defaultGinSlowThreshold
}
ginLogger, err := NewLogger(Options{
Level: "debug",
Format: "json",
OutputPaths: conf.OutputPaths,
InitialFields: conf.InitialFields,
DisableCaller: conf.DisableCaller,
DisableStacktrace: conf.DisableStacktrace,
EncoderConfig: conf.EncoderConfig,
})
if err != nil {
panic("new gin error failed: " + err.Error())
}
var ginLogExtends = GinLogExtends{}
return func(c *gin.Context) {
if skipLog(c.Request.URL.Path, conf.SkipPaths, skipRegexps) {
c.Next()
return
}
start := time.Now()
traceID := getTraceID(c)
// 设置 trace id 到 request header 中
c.Request.Header.Set(string(TraceIDKeyName), traceID)
// 设置 trace id 到 response header 中
c.Writer.Header().Set(string(TraceIDKeyName), traceID)
// 设置 trace id 和 ctxLogger 到 context 中
_, ctxLogger := NewCtxLogger(c, ginLogger, traceID)
_, shortHandlerName := path.Split(c.HandlerName())
ginLogExtends.HandleName = shortHandlerName
// 如果 logger name 为空
if conf.Name == "" {
conf.Name = defaultGinLoggerName
}
// 创建基础 logger,可以记录基础的信息
accessLogger := ctxLogger.Named(conf.Name).With(
zap.Time("req_time", start),
zap.String("client_ip", c.ClientIP()),
zap.String("method", c.Request.Method),
zap.String("path", c.Request.URL.Path),
zap.String("host", c.Request.Host),
zap.String("handle", shortHandlerName),
)
// 判断是否打印请求 header
if conf.EnableRequestHeader {
accessLogger = accessLogger.With(zap.Any("request_header", c.Request.Header))
}
// 判断是否打印请求 form
if conf.EnableRequestForm {
accessLogger = accessLogger.With(zap.Any("request_form", c.Request.Form))
}
// 判断是否打印请求 body
if conf.EnableRequestBody {
accessLogger = accessLogger.With(zap.Any("request_body", string(GetGinRequestBody(c))))
}
rspBodyWriter := &responseBodyWriter{body: bytes.NewBufferString(""), ResponseWriter: c.Writer}
if conf.EnableResponseBody {
// 开启记录响应 body 时,保存 body 到 rspBodyWriter.body 中
c.Writer = rspBodyWriter
}
defer func() {
ginLogExtends.Latency = time.Since(start).Seconds()
// 记录 status code 和 latency
accessLogger = accessLogger.With(
zap.Int("status_code", c.Writer.Status()),
zap.Float64("latency_seconds", ginLogExtends.Latency),
)
// handler 中使用 c.Error(err) 后,会打印到 context_errors 字段中
if len(c.Errors) > 0 {
accessLogger = accessLogger.With(zap.String("context_errors", c.Errors.String()))
}
// 判断是否打印 context keys
if conf.EnableContextKeys {
accessLogger = accessLogger.With(zap.Any("context_keys", c.Keys))
}
// 判断是否打印响应 body
if conf.EnableResponseBody {
accessLogger = accessLogger.With(zap.Any("response_body", rspBodyWriter.body.String()))
}
detailFields := []zap.Field{
zap.String("query", c.Request.URL.RawQuery),
zap.String("proto", c.Request.Proto),
zap.Int("content_length", int(c.Request.ContentLength)),
zap.String("remote_addr", c.Request.RemoteAddr),
zap.String("request_uri", c.Request.RequestURI),
zap.String("referer", c.Request.Referer()),
zap.String("user_agent", c.Request.UserAgent()),
zap.String("content_type", c.ContentType()),
zap.Int("body_size", c.Writer.Size()),
}
if conf.EnableDetails {
accessLogger = accessLogger.With(detailFields...)
}
log := accessLogger.Info
// 打印访问日志,根据状态码确定日志打印级别
if c.Writer.Status() >= http.StatusInternalServerError || len(c.Errors) > 0 {
// 500+ 始终打印带 details 的 error 级别日志
// 无视配置开关,打印全部能搜集的信息
accessLogger = accessLogger.With(detailFields...)
accessLogger = accessLogger.With(zap.Any("context_keys", c.Keys))
accessLogger = accessLogger.With(zap.Any("request_header", c.Request.Header))
accessLogger = accessLogger.With(zap.Any("request_form", c.Request.Form))
accessLogger = accessLogger.With(zap.String("request_body", string(GetGinRequestBody(c))))
accessLogger = accessLogger.With(zap.String("response_body", rspBodyWriter.body.String()))
log = accessLogger.Error
} else if c.Writer.Status() >= http.StatusBadRequest {
// 400+ 默认使用 warn 级别
log = accessLogger.Warn
}
// 慢请求使用 Warn 记录
if ginLogExtends.Latency > conf.SlowThreshold.Seconds() {
accessLogger.Warn(
formatter(c, ginLogExtends)+" hit slow request.",
zap.Float64("slow_threshold", conf.SlowThreshold.Seconds()),
)
} else {
log(formatter(c, ginLogExtends))
}
}()
c.Next()
}
}
//
// skipLog
// @Description: 判断是否需要跳过日志记录
// @param path
// @param SkipPaths
// @param skipRegexps
// @return bool
//
func skipLog(path string, SkipPaths []string, skipRegexps []*regexp.Regexp) bool {
for _, skipPath := range SkipPaths {
if skipPath == path {
return true
}
}
for _, p := range skipRegexps {
if p.MatchString(path) {
return true
}
}
return false
}
//
// GetGinRequestBody
// @Description: 获取请求 body
// @param c
// @return []byte
//
func GetGinRequestBody(c *gin.Context) []byte {
// 获取请求 body
var requestBody []byte
if c.Request.Body != nil {
body, err := ioutil.ReadAll(c.Request.Body)
if err != nil {
_ = c.Error(err)
} else {
requestBody = body
// body 被 read 、 bind 之后会被置空,需要重置
c.Request.Body = ioutil.NopCloser(bytes.NewBuffer(body))
}
}
return requestBody
}
// 用于记录响应 body
type responseBodyWriter struct {
gin.ResponseWriter
body *bytes.Buffer
}
//
// Write
// @Description: 覆盖 ResponseWriter 接口的 Write 方法,将 body 保存到 responseBodyWriter.body 中
// @receiver w
// @param b
// @return int
// @return error
//
func (w responseBodyWriter) Write(b []byte) (int, error) {
w.body.Write(b)
return w.ResponseWriter.Write(b)
}