Forráskód Böngészése

Merge branch 'feature/change_log' of eta_server/eta_chart_lib into master

xyxie 1 éve
szülő
commit
d5f73c2b42
2 módosított fájl, 18 hozzáadás és 3 törlés
  1. 12 1
      controllers/base_auth.go
  2. 6 2
      utils/logs.go

+ 12 - 1
controllers/base_auth.go

@@ -6,6 +6,7 @@ import (
 	"eta/eta_chart_lib/utils"
 	"fmt"
 	"github.com/beego/beego/v2/server/web"
+	"github.com/sirupsen/logrus"
 	"net/http"
 	"net/url"
 
@@ -192,7 +193,17 @@ func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool)
 	if requestBody == "" {
 		requestBody = c.Ctx.Input.URI()
 	}
-	utils.ApiLog.Info("请求地址:", c.Ctx.Input.URI(), "Authorization:", c.Ctx.Input.Header("Authorization"), "RequestBody:", requestBody, "ResponseBody", string(content), "IP:", ip)
+	authorization := c.Ctx.Input.Header("authorization")
+	if authorization == "" {
+		authorization = c.Ctx.Input.Header("Authorization")
+	}
+	utils.ApiLog.WithFields(logrus.Fields{
+		"uri":           c.Ctx.Input.URI(),
+		"authorization": authorization,
+		"requestBody":   requestBody,
+		"responseBody":  data,
+		"ip":            ip,
+	}).Info("request")
 	if coding {
 		content = []byte(utils.StringsToJSON(string(content)))
 	}

+ 6 - 2
utils/logs.go

@@ -36,6 +36,7 @@ func init() {
 	// 设置日志输出JSON格式
 	jsonFormat := new(logrus.JSONFormatter)
 	jsonFormat.DisableHTMLEscape = true
+	jsonFormat.TimestampFormat = HlbFormatDateTime
 	FileLog.SetFormatter(jsonFormat)
 	FileLog.SetReportCaller(true)
 	//LogInstance.SetFormatter(&logrus.TextFormatter{})
@@ -65,13 +66,14 @@ func initBinlog() {
 	// 设置日志输出JSON格式
 	jsonFormat := new(logrus.JSONFormatter)
 	jsonFormat.DisableHTMLEscape = true
+	jsonFormat.TimestampFormat = HlbFormatDateTime
 	Binlog.SetFormatter(jsonFormat)
 }
 func initApiLog() {
 	logPath := ApiLogPath
 	if logPath == "" {
 		if RunMode == "release" {
-			logPath = `/data/rdlucklog/eta_chart_lib`
+			logPath = `/data/etalogs/eta_chart_lib`
 		} else {
 			logPath = `./rdlucklog/api`
 		}
@@ -90,6 +92,7 @@ func initApiLog() {
 	// 设置日志输出JSON格式
 	jsonFormat := new(logrus.JSONFormatter)
 	jsonFormat.DisableHTMLEscape = true
+	jsonFormat.TimestampFormat = HlbFormatDateTime
 	ApiLog.SetFormatter(jsonFormat)
 }
 
@@ -98,9 +101,10 @@ func rolling(fLog *logrus.Logger, logFile string) {
 	// 设置输出
 	fLog.SetOutput(&lumberjack.Logger{
 		Filename:   logFile, //日志文件位置
-		MaxSize:    500,     // 单文件最大容量,单位是MB
+		MaxSize:    100,     // 单文件最大容量,单位是MB
 		MaxBackups: 3,       // 最大保留过期文件个数
 		MaxAge:     7,       // 保留过期文件的最大时间间隔,单位是天
 		Compress:   true,    // 是否需要压缩滚动日志, 使用的 gzip 压缩
+		LocalTime:  true,
 	})
 }